diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-11 22:30:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-11 22:30:05 +0000 |
commit | 8ddb9989e6ca3363035eff753c3c5cb4952edaee (patch) | |
tree | 69417f810f6cbbffda57444d1718e57dc27dcf17 /test | |
parent | e9e2733a04875bfab6596e362b37acd031f99010 (diff) | |
download | external_llvm-8ddb9989e6ca3363035eff753c3c5cb4952edaee.zip external_llvm-8ddb9989e6ca3363035eff753c3c5cb4952edaee.tar.gz external_llvm-8ddb9989e6ca3363035eff753c3c5cb4952edaee.tar.bz2 |
this test was incorrect for x86-64 static. It passed on darwin, because darwin
doesn't have static x86-64 mode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75392 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/rip-rel-address.ll | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/CodeGen/X86/rip-rel-address.ll b/test/CodeGen/X86/rip-rel-address.ll index 2c0926a..576ebe1 100644 --- a/test/CodeGen/X86/rip-rel-address.ll +++ b/test/CodeGen/X86/rip-rel-address.ll @@ -1,7 +1,11 @@ -; RUN: llvm-as < %s | llc -march=x86-64 -relocation-model=static | grep {a(%rip)} +; RUN: llvm-as < %s | llc -march=x86-64 -relocation-model=pic | FileCheck %s -check-prefix=PIC64 +; RUN: llvm-as < %s | llc -mtriple=x86_64-unknown-linux-gnu -relocation-model=static | FileCheck %s -check-prefix=STATIC64 @a = internal global double 3.4 define double @foo() nounwind { %a = load double* @a ret double %a + +; PIC64: movsd _a(%rip), %xmm0 +; STATIC64: movsd a, %xmm0 } |