blob: de6f3cda7d3c66fbd0b5b26070026ccc3b4146c0 [file] [log] [blame]
Kristina Brooksa1e6e652018-10-18 14:44:25 +00001// REQUIRES: x86-registered-target
2
3// RUN: %clang_cc1 %s -emit-llvm -triple x86_64-unknown-linux -o - -mno-tls-direct-seg-refs | FileCheck %s -check-prefix=NO-TLSDIRECT
4// RUN: %clang_cc1 %s -emit-llvm -triple x86_64-unknown-linux -o - | FileCheck %s -check-prefix=TLSDIRECT
Kristina Brooks7f569b72018-10-18 14:07:02 +00005
6// NO-TLSDIRECT: attributes #{{[0-9]+}} = {{{.*}} "indirect-tls-seg-refs"
7// TLSDIRECT-NOT: attributes #{{[0-9]+}} = {{{.*}} "indirect-tls-seg-refs"
8
9void test1() {
10}