aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2002-07-30-SubregSetAssertion.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2002-07-30-SubregSetAssertion.c')
-rw-r--r--test/FrontendC/2002-07-30-SubregSetAssertion.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/FrontendC/2002-07-30-SubregSetAssertion.c b/test/FrontendC/2002-07-30-SubregSetAssertion.c
deleted file mode 100644
index af72eda..0000000
--- a/test/FrontendC/2002-07-30-SubregSetAssertion.c
+++ /dev/null
@@ -1,12 +0,0 @@
-// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
-
-
-union X {
- void *B;
-};
-
-union X foo() {
- union X A;
- A.B = (void*)123;
- return A;
-}