diff options
author | John Hodge <tpg@ucc.asn.au> | 2019-06-08 11:23:58 +0800 |
---|---|---|
committer | John Hodge <tpg@ucc.asn.au> | 2019-06-08 11:23:58 +0800 |
commit | 4f97820cba294de16c103a27ab4896252168cc6e (patch) | |
tree | 2f161ffef98138819173c9bcf61435630f3b9c83 /src/trans/codegen_c.cpp | |
parent | 56e697e83cdd75d21c32281ce99d6c9fff3530f9 (diff) | |
download | mrust-4f97820cba294de16c103a27ab4896252168cc6e.tar.gz |
Codegen C - (minor) Include drop statement in output comments
Diffstat (limited to 'src/trans/codegen_c.cpp')
-rw-r--r-- | src/trans/codegen_c.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/trans/codegen_c.cpp b/src/trans/codegen_c.cpp index bd447191..9af87d47 100644 --- a/src/trans/codegen_c.cpp +++ b/src/trans/codegen_c.cpp @@ -2848,6 +2848,7 @@ namespace { } if( e.flag_idx != ~0u ) m_of << indent << "}\n"; + m_of << indent << "// ^ " << stmt << "\n"; break; } case ::MIR::Statement::TAG_Asm: switch(m_compiler) |