f5afd9e924
* sibcall.c (uses_addressof): Add INMEM argument, check for current_function_internal_arg_pointer outside of MEM rtxs in addition to ADDRESSOFs. (sequence_uses_addressof): Update caller. * gcc.c-torture/execute/20000706-1.c: New test. * gcc.c-torture/execute/20000706-2.c: New test. * gcc.c-torture/execute/20000706-3.c: New test. * gcc.c-torture/execute/20000706-4.c: New test. * gcc.c-torture/execute/20000706-5.c: New test. From-SVN: r34906
23 lines
204 B
C
23 lines
204 B
C
extern void abort(void);
|
|
extern void exit(int);
|
|
|
|
int *c;
|
|
|
|
void bar(int b)
|
|
{
|
|
if (*c != 1 || b != 2)
|
|
abort();
|
|
}
|
|
|
|
void foo(int a, int b)
|
|
{
|
|
c = &a;
|
|
bar(b);
|
|
}
|
|
|
|
int main()
|
|
{
|
|
foo(1, 2);
|
|
exit(0);
|
|
}
|