diff options
Diffstat (limited to 'test/Driver/pic.c')
-rw-r--r-- | test/Driver/pic.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Driver/pic.c b/test/Driver/pic.c index a3d989c8b4f46..3a14d61cf1c65 100644 --- a/test/Driver/pic.c +++ b/test/Driver/pic.c @@ -11,6 +11,8 @@ // CHECK-PIC2: "-mrelocation-model" "pic" // CHECK-PIC2: "-pic-level" "2" // +// CHECK-NO-STATIC-NOT: "-static" +// // CHECK-PIE1: "-mrelocation-model" "pic" // CHECK-PIE1: "-pic-level" "1" // CHECK-PIE1: "-pie-level" "1" @@ -200,6 +202,8 @@ // RUN: | FileCheck %s --check-prefix=CHECK-PIC2 // RUN: %clang -c %s -target arm64-apple-ios -mkernel -miphoneos-version-min=7.0.0 -### 2>&1 \ // RUN: | FileCheck %s --check-prefix=CHECK-PIC2 +// RUN: %clang -x assembler -c %s -target arm64-apple-ios -mkernel -miphoneos-version-min=7.0.0 -no-integrated-as -### 2>&1 \ +// RUN: | FileCheck %s --check-prefix=CHECK-NO-STATIC // 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 -target armv7-apple-ios -fapple-kext -miphoneos-version-min=6.0.0 -static -### 2>&1 \ |