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
diff --git a/test/CodeGen/asm-2.c b/test/CodeGen/asm-2.c
index a58a781..f5b378e 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 @@
asm("xyz" :"=a"(a), "=d"(b) : "a"(data));
return a + b;
-}
\ No newline at end of file
+}