diff options
author | Sriraman Tallam <tmsriram@google.com> | 2016-04-29 21:19:16 +0000 |
---|---|---|
committer | Sriraman Tallam <tmsriram@google.com> | 2016-04-29 21:19:16 +0000 |
commit | 7da9b445eacd8e19b0da5c29d559ee5db0a33952 (patch) | |
tree | 2baef86b197497129597ad45ce193c6cea0df302 /llvm/test/CodeGen/X86/pie.ll | |
parent | dc4ebad6d462bdc622a912386464fdec0acd7d4f (diff) | |
download | bcm5719-llvm-7da9b445eacd8e19b0da5c29d559ee5db0a33952.tar.gz bcm5719-llvm-7da9b445eacd8e19b0da5c29d559ee5db0a33952.zip |
Differential Revision: http://reviews.llvm.org/D19733
llvm-svn: 268106
Diffstat (limited to 'llvm/test/CodeGen/X86/pie.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/pie.ll | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/X86/pie.ll b/llvm/test/CodeGen/X86/pie.ll index bb1c00ca4ea..33221a77fc0 100644 --- a/llvm/test/CodeGen/X86/pie.ll +++ b/llvm/test/CodeGen/X86/pie.ll @@ -1,7 +1,7 @@ -; RUN: llc < %s -O0 -mcpu=generic -mtriple=i686-linux-gnu -relocation-model=pic -enable-pie | FileCheck %s
-; RUN: llc < %s -O0 -mcpu=generic -mtriple=i686-linux-gnu -fast-isel -relocation-model=pic -enable-pie | FileCheck %s
-; RUN: llc < %s -O0 -mcpu=generic -mtriple=x86_64-linux-gnu -relocation-model=pic -enable-pie | FileCheck %s
-; RUN: llc < %s -O0 -mcpu=generic -mtriple=x86_64-linux-gnu -fast-isel -relocation-model=pic -enable-pie | FileCheck %s
+; RUN: llc < %s -O0 -mcpu=generic -mtriple=i686-linux-gnu -relocation-model=pic | FileCheck %s
+; RUN: llc < %s -O0 -mcpu=generic -mtriple=i686-linux-gnu -fast-isel -relocation-model=pic | FileCheck %s
+; RUN: llc < %s -O0 -mcpu=generic -mtriple=x86_64-linux-gnu -relocation-model=pic | FileCheck %s
+; RUN: llc < %s -O0 -mcpu=generic -mtriple=x86_64-linux-gnu -fast-isel -relocation-model=pic | FileCheck %s
; CHECK-LABEL: bar:
; CHECK: call{{l|q}} foo{{$}}
@@ -39,3 +39,7 @@ entry: }
; -fpie for local global data tests should be added here
+
+!llvm.module.flags = !{!0, !1}
+!0 = !{i32 1, !"PIC Level", i32 1}
+!1 = !{i32 1, !"PIE Level", i32 1}
|