1 /* { dg-require-effective-target lto } */
2 /* { dg-options "-O2 -flto" } */
4 unsigned long global
= -12345;
7 __attribute__((noinline
))
8 test(unsigned long v
, unsigned long v2
)
10 unsigned long x
= v
% v2
;
15 int main(int argc
, char **argv
)
19 for (int i
= 0; i
< 100; i
++)
20 r
+= test(argc
, global
);