summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/compound-literal.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/compound-literal.c')
-rw-r--r--test/CodeGen/compound-literal.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/compound-literal.c b/test/CodeGen/compound-literal.c
new file mode 100644
index 0000000..ef04367
--- /dev/null
+++ b/test/CodeGen/compound-literal.c
@@ -0,0 +1,12 @@
+// RUN: clang-cc < %s -emit-llvm
+
+int* a = &(int){1};
+struct s {int a, b, c;} * b = &(struct s) {1, 2, 3};
+// Not working; complex constants are broken
+// _Complex double * x = &(_Complex double){1.0f};
+
+int xxx() {
+int* a = &(int){1};
+struct s {int a, b, c;} * b = &(struct s) {1, 2, 3};
+_Complex double * x = &(_Complex double){1.0f};
+}
OpenPOWER on IntegriCloud