diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-12-18 06:30:12 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-12-18 06:30:12 +0000 |
commit | a7d0231b66f16e65c17f5a37a7140bca11d45c2d (patch) | |
tree | 4163f6541ff5c8dc323c6f29f32eff2af5bf2502 /clang/test/CodeGen/vector.c | |
parent | 357b6fd3e5db431068f4922293de2b7fc346fcd4 (diff) | |
download | bcm5719-llvm-a7d0231b66f16e65c17f5a37a7140bca11d45c2d.tar.gz bcm5719-llvm-a7d0231b66f16e65c17f5a37a7140bca11d45c2d.zip |
clang -cc1: Rename -mcpu to -target-cpu to match other target options and not alias driver/backend option.
llvm-svn: 91671
Diffstat (limited to 'clang/test/CodeGen/vector.c')
-rw-r--r-- | clang/test/CodeGen/vector.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/vector.c b/clang/test/CodeGen/vector.c index 21d63ec144c..c16d65bebec 100644 --- a/clang/test/CodeGen/vector.c +++ b/clang/test/CodeGen/vector.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -triple i386-apple-darwin9 -mcpu pentium4 -g -emit-llvm %s -o - +// RUN: %clang_cc1 -triple i386-apple-darwin9 -target-cpu pentium4 -g -emit-llvm %s -o - typedef short __v4hi __attribute__ ((__vector_size__ (8))); void test1() { |