diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-05-19 11:12:40 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-05-19 11:12:40 +0000 |
commit | c219a1579c200c62d925653336e72d9d2f6c4cb7 (patch) | |
tree | 6692417d8acc509bcd47dd61bd55c5b8eecb19eb /test/CodeGen | |
parent | e71b85feb0a2df9273b1b488f5b40279369a6255 (diff) |
Remove the -arch option from clang-cc: for all practical purposes, it's
redundant with -triple.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72108 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/asm-2.c | 4 | ||||
-rw-r--r-- | test/CodeGen/builtin-memfns.c | 2 | ||||
-rw-r--r-- | test/CodeGen/const-init.c | 2 | ||||
-rw-r--r-- | test/CodeGen/global-decls.c | 2 | ||||
-rw-r--r-- | test/CodeGen/mangle.c | 2 | ||||
-rw-r--r-- | test/CodeGen/staticinit.c | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/test/CodeGen/asm-2.c b/test/CodeGen/asm-2.c index a58a781e72..f5b378eb10 100644 --- a/test/CodeGen/asm-2.c +++ b/test/CodeGen/asm-2.c @@ -1,4 +1,4 @@ -// RUN: clang-cc -emit-llvm %s -o %t -arch=i386 -O2 && +// RUN: clang-cc -emit-llvm %s -o %t -triple i386-pc-linux-gnu -O2 && // RUN: not grep "load" %t // <rdar://problem/6841383> @@ -7,4 +7,4 @@ int cpuid(unsigned data) { asm("xyz" :"=a"(a), "=d"(b) : "a"(data)); return a + b; -}
\ No newline at end of file +} diff --git a/test/CodeGen/builtin-memfns.c b/test/CodeGen/builtin-memfns.c index e9e239624e..9ae380c545 100644 --- a/test/CodeGen/builtin-memfns.c +++ b/test/CodeGen/builtin-memfns.c @@ -1,4 +1,4 @@ -// RUN: clang-cc -arch i386 -emit-llvm -o %t %s && +// RUN: clang-cc -triple i386-pc-linux-gnu -emit-llvm -o %t %s && // RUN: grep '@llvm.memset.i32' %t && // RUN: grep '@llvm.memcpy.i32' %t && // RUN: grep '@llvm.memmove.i32' %t && diff --git a/test/CodeGen/const-init.c b/test/CodeGen/const-init.c index 1f9d74c7e9..0364cc153f 100644 --- a/test/CodeGen/const-init.c +++ b/test/CodeGen/const-init.c @@ -1,4 +1,4 @@ -// RUN: clang-cc -arch i386 -verify -emit-llvm -o %t %s && +// RUN: clang-cc -triple i386-pc-linux-gnu -verify -emit-llvm -o %t %s && #include <stdint.h> diff --git a/test/CodeGen/global-decls.c b/test/CodeGen/global-decls.c index f08a7dc13f..80222ea85e 100644 --- a/test/CodeGen/global-decls.c +++ b/test/CodeGen/global-decls.c @@ -1,4 +1,4 @@ -// RUN: clang-cc -arch i386 -emit-llvm -o %t %s && +// RUN: clang-cc -triple i386-pc-linux-gnu -emit-llvm -o %t %s && // RUN: grep '@g0_ext = extern_weak global i32' %t && extern int g0_ext __attribute__((weak)); diff --git a/test/CodeGen/mangle.c b/test/CodeGen/mangle.c index b3affe9469..17d74ba71f 100644 --- a/test/CodeGen/mangle.c +++ b/test/CodeGen/mangle.c @@ -1,4 +1,4 @@ -// RUN: clang-cc -arch i386 -emit-llvm -o %t %s && +// RUN: clang-cc -triple i386-pc-linux-gnu -emit-llvm -o %t %s && // RUN: grep '@_Z2f0i' %t && // RUN: grep '@_Z2f0l' %t && diff --git a/test/CodeGen/staticinit.c b/test/CodeGen/staticinit.c index fa3e736d31..91fcdcf69f 100644 --- a/test/CodeGen/staticinit.c +++ b/test/CodeGen/staticinit.c @@ -1,4 +1,4 @@ -// RUN: clang-cc -arch i386 -emit-llvm -o %t %s && +// RUN: clang-cc -triple i386-pc-linux-gnu -emit-llvm -o %t %s && // RUN: grep "g.b = internal global i8. getelementptr" %t && struct AStruct { |