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/ResolvExpr/ShortCircuit.c

    r44b5ca0 ra65d92e  
    66void g( int );
    77
    8 void f( int a )
    9 {
    10   int b;
    11   float c;
    12   g( a ? b : c );
    13   g( a && c );
    14   g( a || b );
     8void f( int a ) {
     9        int b;
     10        float c;
     11        g( a ? b : c );
     12        g( a && c );
     13        g( a || b );
    1514}
     15
     16// Local Variables: //
     17// tab-width: 4 //
     18// End: //
Note: See TracChangeset for help on using the changeset viewer.