Changeset d48e529 for src/CodeGen
- Timestamp:
- Sep 19, 2017, 1:22:51 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- a9a4771
- Parents:
- 4e8949f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cc
r4e8949f rd48e529 89 89 } else if ( currentLocation.followedBy( to, 1 ) ) { 90 90 output << "\n" << indent; 91 currentLocation. linenumber+= 1;91 currentLocation.first_line += 1; 92 92 } else if ( currentLocation.followedBy( to, 2 ) ) { 93 93 output << "\n\n" << indent; 94 currentLocation. linenumber+= 2;95 } else { 96 output << "\n# " << to. linenumber<< " \"" << to.filename94 currentLocation.first_line += 2; 95 } else { 96 output << "\n# " << to.first_line << " \"" << to.filename 97 97 << "\"\n" << indent; 98 98 currentLocation = to;
Note: See TracChangeset
for help on using the changeset viewer.