diff options
Diffstat (limited to 'test/CodeGen/enum.c')
-rw-r--r-- | test/CodeGen/enum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/enum.c b/test/CodeGen/enum.c index 172d308..771fc6b 100644 --- a/test/CodeGen/enum.c +++ b/test/CodeGen/enum.c @@ -1,4 +1,4 @@ -// RUN: clang-cc -triple i386-unknown-unknown %s -emit-llvm-bc -o - | opt -std-compile-opts | llvm-dis | grep 'ret i32 6' +// RUN: %clang_cc1 -triple i386-unknown-unknown %s -emit-llvm-bc -o - | opt -std-compile-opts | llvm-dis | grep 'ret i32 6' static enum { foo, bar = 1U } z; |