diff options
Diffstat (limited to 'clang/test/CodeGen/var-align.c')
-rw-r--r-- | clang/test/CodeGen/var-align.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/var-align.c b/clang/test/CodeGen/var-align.c index b0b62ae2647..fefd35ab634 100644 --- a/clang/test/CodeGen/var-align.c +++ b/clang/test/CodeGen/var-align.c @@ -1,4 +1,4 @@ -// RUN: clang-cc -emit-llvm %s -o - | grep "align 16" | count 2 +// RUN: %clang_cc1 -emit-llvm %s -o - | grep "align 16" | count 2 __attribute((aligned(16))) float a[128]; union {int a[4]; __attribute((aligned(16))) float b[4];} u; |