Changeset a32b204 for translator/Tests


Ignore:
Timestamp:
May 17, 2015, 1:19:35 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:
0dd3a2f
Parents:
b87a5ed
Message:

licencing: second groups of files

Location:
translator/Tests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • translator/Tests/ResolvExpr/Statement.c

    rb87a5ed ra32b204  
    77    int a;
    88    struct { int b; } a;
    9     if( a ) {
    10       while( a ) {
     9    if ( a ) {
     10      while ( a ) {
    1111        int *b;
    12         for( b; a; b ) {
     12        for ( b; a; b ) {
    1313        }
    1414      }
  • translator/Tests/Syntax/Expression.c

    rb87a5ed ra32b204  
    1010    // operators
    1111
    12     !i;
     12    ! i;
    1313    ~i;
    1414    +i;
  • translator/Tests/gcc/920409-2.c

    rb87a5ed ra32b204  
    11double x(){int x1,x2;double v;
    2 if(((long)(x1-x2))<1)return -1.0;v=t(v);v=y(1,v>0.0?(int)v:((int)v-1));}
     2if (((long)(x1-x2))<1)return -1.0;v=t(v);v=y(1,v>0.0?(int)v:((int)v-1));}
  • translator/Tests/gcc/920410-2.c

    rb87a5ed ra32b204  
    33    int j;
    44
    5     while( 1 )
     5    while ( 1 )
    66      {
    7         for( j = 0; j < 4; j++ )
     7        for ( j = 0; j < 4; j++ )
    88          ;
    9         for( j = 0; j < 4; j++ )
     9        for ( j = 0; j < 4; j++ )
    1010          ;
    1111      }
Note: See TracChangeset for help on using the changeset viewer.