Ignore:
Timestamp:
Jan 19, 2015, 6:29:10 PM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
f7f6785
Parents:
0b8cd722
Message:

add list initializer, formatting changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • translator/Parser/TypeData.cc

    r0b8cd722 r6c3744e  
    696696            } else {
    697697                switch ( ret ) {
     698                  case BasicType::LongLongSignedInt:    // PAB
     699                    ret = BasicType::LongLongUnsignedInt;
     700                    break;
     701                  case BasicType::LongSignedInt:
     702                    ret = BasicType::LongUnsignedInt;
     703                    break;
    698704                  case BasicType::SignedInt:
    699705                  case BasicType::ShortSignedInt:
     
    715721            } else {
    716722                switch ( ret ) {
     723                  case BasicType::LongLongSignedInt:    // PAB
     724                    ret = BasicType::LongLongUnsignedInt;
     725                    break;
    717726                  case BasicType::LongSignedInt:
    718727                    ret = BasicType::LongUnsignedInt;
Note: See TracChangeset for help on using the changeset viewer.