[cfe-commits] r164908 - /cfe/trunk/test/Driver/pic.c
Bob Wilson
bob.wilson at apple.com
Sat Sep 29 17:58:28 PDT 2012
Author: bwilson
Date: Sat Sep 29 19:58:28 2012
New Revision: 164908
URL: http://llvm.org/viewvc/llvm-project?rev=164908&view=rev
Log:
Specify a full target in an attempt to appease buildbots.
Modified:
cfe/trunk/test/Driver/pic.c
Modified: cfe/trunk/test/Driver/pic.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/pic.c?rev=164908&r1=164907&r2=164908&view=diff
==============================================================================
--- cfe/trunk/test/Driver/pic.c (original)
+++ cfe/trunk/test/Driver/pic.c Sat Sep 29 19:58:28 2012
@@ -95,11 +95,11 @@
// RUN: | FileCheck %s --check-prefix=CHECK-DYNAMIC-NO-PIC2
// Checks for ARM
-// RUN: %clang -c %s -arch armv7 -fapple-kext -miphoneos-version-min=6.0.0 -### 2>&1 \
+// RUN: %clang -c %s -target armv7-apple-ios -fapple-kext -miphoneos-version-min=6.0.0 -### 2>&1 \
// RUN: | FileCheck %s --check-prefix=CHECK-PIC2
-// RUN: %clang -c %s -arch armv7 -mkernel -miphoneos-version-min=6.0.0 -### 2>&1 \
+// RUN: %clang -c %s -target armv7-apple-ios -mkernel -miphoneos-version-min=6.0.0 -### 2>&1 \
// RUN: | FileCheck %s --check-prefix=CHECK-PIC2
-// RUN: %clang -c %s -arch armv7 -fapple-kext -miphoneos-version-min=5.0.0 -### 2>&1 \
+// RUN: %clang -c %s -target armv7-apple-ios -fapple-kext -miphoneos-version-min=5.0.0 -### 2>&1 \
// RUN: | FileCheck %s --check-prefix=CHECK-NO-PIC
-// RUN: %clang -c %s -arch armv7 -fapple-kext -miphoneos-version-min=6.0.0 -static -### 2>&1 \
+// RUN: %clang -c %s -target armv7-apple-ios -fapple-kext -miphoneos-version-min=6.0.0 -static -### 2>&1 \
// RUN: | FileCheck %s --check-prefix=CHECK-NO-PIC
More information about the cfe-commits
mailing list