Ignore:
Timestamp:
Apr 28, 2015, 4:21:36 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:
42e2ad7
Parents:
ad17ba6a
Message:

fixed sizeof type variable, find lowest cost alternative for sizeof expression, removed unused classes, added compiler flag, remove temporary file for -CFA, formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • translator/Tests/Parser/Constant0-1.c

    rad17ba6a rbdd516a  
    55int 0;
    66const int 0;
    7 static const int 0;
     7//static const int 0;
    88int 1;
    99const int 1;
    10 static const int 1;
     10//static const int 1;
    1111int 0, 1;
    1212const int 0, 1;
    13 static const int 0, 1;
     13//static const int 0, 1;
    1414struct { int i; } 0;
    1515const struct { int i; } 1;
     
    2727* int x, 0;
    2828const * int x, 0;
    29 static const * int x, 0;
     29//static const * int x, 0;
    3030* struct { int i; } 0;
    3131const * struct { int i; } 0;
    3232static const * struct { int i; } 0;
    33 static * int x, 0;
    34 static const * int x, 0;
     33//static * int x, 0;
     34//static const * int x, 0;
    3535const * * int x, 0;
     36
     37int main() {
     38//int 1, * 0;
     39//* int x, 0;
     40}
Note: See TracChangeset for help on using the changeset viewer.