diff options
Diffstat (limited to 'test/CodeGen/compound-literal.c')
-rw-r--r-- | test/CodeGen/compound-literal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/compound-literal.c b/test/CodeGen/compound-literal.c index 969c5af..a8eec61 100644 --- a/test/CodeGen/compound-literal.c +++ b/test/CodeGen/compound-literal.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s +// RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm %s -o - | FileCheck %s int* a = &(int){1}; struct s {int a, b, c;} * b = &(struct s) {1, 2, 3}; |