]> granicus.if.org Git - clang/commitdiff
[X86][Tests] Make sure tls-direct-seg-refs tests only run where supported
authorKristina Brooks <kristina@nym.hush.com>
Thu, 18 Oct 2018 14:44:25 +0000 (14:44 +0000)
committerKristina Brooks <kristina@nym.hush.com>
Thu, 18 Oct 2018 14:44:25 +0000 (14:44 +0000)
This flag is only supported for x86 targets, make sure the tests only run
for those.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@344742 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/indirect-tls-seg-refs.c
test/Driver/indirect-tls-seg-refs.c

index 26806801ad0507d8697d1aaa8b8c04b522c6abd9..de6f3cda7d3c66fbd0b5b26070026ccc3b4146c0 100644 (file)
@@ -1,5 +1,7 @@
-// RUN: %clang_cc1 %s -emit-llvm -o - -mno-tls-direct-seg-refs | FileCheck %s -check-prefix=NO-TLSDIRECT
-// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s -check-prefix=TLSDIRECT
+// REQUIRES: x86-registered-target
+
+// RUN: %clang_cc1 %s -emit-llvm -triple x86_64-unknown-linux -o - -mno-tls-direct-seg-refs | FileCheck %s -check-prefix=NO-TLSDIRECT
+// RUN: %clang_cc1 %s -emit-llvm -triple x86_64-unknown-linux -o - | FileCheck %s -check-prefix=TLSDIRECT
 
 // NO-TLSDIRECT: attributes #{{[0-9]+}} = {{{.*}} "indirect-tls-seg-refs"
 // TLSDIRECT-NOT: attributes #{{[0-9]+}} = {{{.*}} "indirect-tls-seg-refs"
index e15e874693b9e25172fb5595065ee6a576212b05..b3f69329854e7c00796e0bce4184071a6b1add6d 100644 (file)
@@ -1,7 +1,8 @@
-// RUN: %clang -### %s 2>&1 | FileCheck %s -check-prefix=TLSDIRECT
-// RUN: %clang -### -mno-tls-direct-seg-refs -mtls-direct-seg-refs %s 2>&1 | FileCheck %s -check-prefix=TLSDIRECT
-// RUN: %clang -### -mtls-direct-seg-refs -mno-tls-direct-seg-refs %s 2>&1 | FileCheck %s -check-prefix=NO-TLSDIRECT
-// REQUIRES: clang-driver
+// REQUIRES: clang-driver, x86-registered-target
+
+// RUN: %clang -### -target x86_64-unknown-linux %s 2>&1 | FileCheck %s -check-prefix=TLSDIRECT
+// RUN: %clang -### -target x86_64-unknown-linux -mno-tls-direct-seg-refs -mtls-direct-seg-refs %s 2>&1 | FileCheck %s -check-prefix=TLSDIRECT
+// RUN: %clang -### -target x86_64-unknown-linux -mtls-direct-seg-refs -mno-tls-direct-seg-refs %s 2>&1 | FileCheck %s -check-prefix=NO-TLSDIRECT
 
 // NO-TLSDIRECT: -mno-tls-direct-seg-refs
 // TLSDIRECT-NOT: -mno-tls-direct-seg-refs