]> matita.cs.unibo.it Git - pkg-cerco/acc.git/blob - tests/GCCTestSuite/fold-abs-1.c.expected
Imported Upstream version 0.2
[pkg-cerco/acc.git] / tests / GCCTestSuite / fold-abs-1.c.expected
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fwrapv" } */
3 #define ABS(x) (x > 0 ? x : -x)
4 int f (int a, int b) {
5         if ((ABS(a) | b) != 0) return 1;
6         else return 0;
7 }