diff options
author | Bob Wilson <bob.wilson@apple.com> | 2012-09-30 00:58:28 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2012-09-30 00:58:28 +0000 |
commit | 33e3911c0864f45dca7d1eca9158ba1ce9f057be (patch) | |
tree | 73a5a7672bf021d2c6fab37a6ee205de82fbf6e1 | |
parent | f2f3ce54fc1235bec2d0d0b0ef3b53bdff6d9655 (diff) |
Specify a full target in an attempt to appease buildbots.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164908 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Driver/pic.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Driver/pic.c b/test/Driver/pic.c index 23d9771cdd..5b69dba36d 100644 --- a/test/Driver/pic.c +++ b/test/Driver/pic.c @@ -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 |