mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
020f241883
automatically. Use -S with llvm-gcc rather than -c, so tests can work when llvm-gcc is really dragonegg (which can output IR with -S but not -c). llvm-svn: 120158
30 lines
410 B
C
30 lines
410 B
C
// RUN: %llvmgcc -S %s -o - | grep llvm.gcroot
|
|
// RUN: %llvmgcc -S %s -o - | grep llvm.gcroot | count 6
|
|
// RUN: %llvmgcc -S %s -o - | llvm-as
|
|
|
|
typedef struct foo_s
|
|
{
|
|
int a;
|
|
} foo, __attribute__ ((gcroot)) *foo_p;
|
|
|
|
foo my_foo;
|
|
|
|
int alpha ()
|
|
{
|
|
foo my_foo2 = my_foo;
|
|
|
|
return my_foo2.a;
|
|
}
|
|
|
|
int bar (foo a)
|
|
{
|
|
foo_p b;
|
|
return b->a;
|
|
}
|
|
|
|
foo_p baz (foo_p a, foo_p b, foo_p *c)
|
|
{
|
|
a = b = *c;
|
|
return a;
|
|
}
|