Ignore:
Timestamp:
Jun 5, 2015, 9:34:43 AM (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:
59db689
Parents:
44b5ca0
Message:

regression testing, second attempt

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Tests/gcc/900407-1.c

    r44b5ca0 ra65d92e  
    1 foo (int a, int b, int *p)
    2 {
    3   int c;
    4   p[2] = a + 0x1000;
    5   c = b + 0xffff0000;
    6   if ((b + 0xffff0000) == 2)
    7     c++;
    8   p[2] = c;
     1foo ( int a, int b, int *p ) {
     2        int c;
     3        p[2] = a + 0x1000;
     4        c = b + 0xffff0000;
     5        if ( (b + 0xffff0000) == 2 )
     6                c++;
     7        p[2] = c;
    98}
     9
     10// Local Variables: //
     11// tab-width: 4 //
     12// End: //
Note: See TracChangeset for help on using the changeset viewer.