Changeset 313


Ignore:
Timestamp:
Jun 11, 2003, 12:41:51 PM (22 years ago)
Author:
bird
Message:

Made gcc not optimize away that static.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/testcase/456/simple.c

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r312 r313  
    2727}
    2828
    29 void main(int argc, char **argv)
     29int main(int argc, char **argv)
    3030{
    31     foo(1, 2);
    32     bar(1, 2);
     31    int i;
     32    i = foo(1, 2);
     33    i += bar(1, 2);
    3334    stub();
     35    return i;
    3436}
Note: See TracChangeset for help on using the changeset viewer.