summaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/2003-08-21-StmtExpr.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeGen/2003-08-21-StmtExpr.c')
-rw-r--r--clang/test/CodeGen/2003-08-21-StmtExpr.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2003-08-21-StmtExpr.c b/clang/test/CodeGen/2003-08-21-StmtExpr.c
new file mode 100644
index 0000000..39db694
--- /dev/null
+++ b/clang/test/CodeGen/2003-08-21-StmtExpr.c
@@ -0,0 +1,12 @@
+// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
+
+
+typedef struct {
+ unsigned long val;
+} structty;
+
+void bar(structty new_mask);
+static void foo() {
+ bar(({ structty mask; mask; }));
+}
+