Changeset 12d44bb for src/CodeGen/GenType.cc
- Timestamp:
- Dec 15, 2016, 11:19:43 AM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, 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:
- 596f987b
- Parents:
- 38a0a4d (diff), d78f4c0 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/GenType.cc
r38a0a4d r12d44bb 204 204 void GenType::visit( ZeroType *zeroType ) { 205 205 // ideally these wouldn't hit codegen at all, but should be safe to make them ints 206 typeString = " int " + typeString;206 typeString = "long int " + typeString; 207 207 handleQualifiers( zeroType ); 208 208 } … … 210 210 void GenType::visit( OneType *oneType ) { 211 211 // ideally these wouldn't hit codegen at all, but should be safe to make them ints 212 typeString = " int " + typeString;212 typeString = "long int " + typeString; 213 213 handleQualifiers( oneType ); 214 214 }
Note: See TracChangeset
for help on using the changeset viewer.