aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2003-08-21-StmtExpr.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2003-08-21-StmtExpr.c')
-rw-r--r--test/FrontendC/2003-08-21-StmtExpr.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/FrontendC/2003-08-21-StmtExpr.c b/test/FrontendC/2003-08-21-StmtExpr.c
deleted file mode 100644
index 7f7d22ea9d..0000000000
--- a/test/FrontendC/2003-08-21-StmtExpr.c
+++ /dev/null
@@ -1,12 +0,0 @@
-// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
-
-
-typedef struct {
- unsigned long val;
-} structty;
-
-void bar(structty new_mask);
-static void foo() {
- bar(({ structty mask; mask; }));
-}
-