aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2003-08-18-StructAsValue.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/2003-08-18-StructAsValue.c')
-rw-r--r--test/CodeGen/2003-08-18-StructAsValue.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/2003-08-18-StructAsValue.c b/test/CodeGen/2003-08-18-StructAsValue.c
new file mode 100644
index 000000000000..9b8b5a2b1c19
--- /dev/null
+++ b/test/CodeGen/2003-08-18-StructAsValue.c
@@ -0,0 +1,11 @@
+// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
+
+
+typedef struct {
+ int op;
+} event_t;
+
+event_t test(int X) {
+ event_t foo = { 1 }, bar = { 2 };
+ return X ? foo : bar;
+}