mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-11 05:35:11 +00:00
fea1dd0804
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79992 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
275 B
C
20 lines
275 B
C
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
|
|
|
|
/* Testcase for when struct tag conflicts with typedef name... grr */
|
|
|
|
typedef struct foo {
|
|
struct foo *X;
|
|
int Y;
|
|
} * foo;
|
|
|
|
foo F1;
|
|
struct foo *F2;
|
|
|
|
enum bar { test1, test2 };
|
|
|
|
typedef float bar;
|
|
|
|
enum bar B1;
|
|
bar B2;
|
|
|