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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/compound-literal.c b/test/CodeGen/compound-literal.c
index ef0436744d..4b995dbfef 100644
--- a/test/CodeGen/compound-literal.c
+++ b/test/CodeGen/compound-literal.c
@@ -1,4 +1,4 @@
-// RUN: clang-cc < %s -emit-llvm
+// RUN: %clang_cc1 < %s -emit-llvm
int* a = &(int){1};
struct s {int a, b, c;} * b = &(struct s) {1, 2, 3};