aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/2009-04-12-picrel.ll
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2009-04-12 23:00:38 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2009-04-12 23:00:38 +0000
commitb215776fa1ee3f1fc389eadc843688c5a0c79a2d (patch)
tree5da19d2f1f668be77d0f91ce52b2d1623ed1a0ad /test/CodeGen/X86/2009-04-12-picrel.ll
parentddeed50d76e2ad52d3ccb3664d21dfe1463179c6 (diff)
downloadexternal_llvm-b215776fa1ee3f1fc389eadc843688c5a0c79a2d.zip
external_llvm-b215776fa1ee3f1fc389eadc843688c5a0c79a2d.tar.gz
external_llvm-b215776fa1ee3f1fc389eadc843688c5a0c79a2d.tar.bz2
In X86DAGToDAGISel::MatchWrapper, if base or index are set, avoid matching
only if symbolic addresses are RIP relatives. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68924 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/2009-04-12-picrel.ll')
-rw-r--r--test/CodeGen/X86/2009-04-12-picrel.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/X86/2009-04-12-picrel.ll b/test/CodeGen/X86/2009-04-12-picrel.ll
new file mode 100644
index 0000000..73062ab
--- /dev/null
+++ b/test/CodeGen/X86/2009-04-12-picrel.ll
@@ -0,0 +1,13 @@
+; RUN: llvm-as < %s | llc -mtriple=x86_64-unknown-linux-gnu -march=x86-64 -relocation-model=static -code-model=small > %t
+; RUN: grep leaq %t | count 1
+
+@dst = external global [131072 x i32]
+@ptr = external global i32*
+
+define void @off01(i64 %i) nounwind {
+entry:
+ %.sum = add i64 %i, 16
+ %0 = getelementptr [131072 x i32]* @dst, i64 0, i64 %.sum
+ store i32* %0, i32** @ptr, align 8
+ ret void
+}