blob: 2463353a12eebab7fb07eb97fd27df2443330e5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* { dg-do run } */
/* { dg-options "-O2 -fzero-call-used-regs=skip" } */
volatile int result = 0;
int
__attribute__((noipa))
foo (int x)
{
return x;
}
int main()
{
result = foo (2);
return 0;
}
|