mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
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
This commit is contained in:
parent
e9e2733a04
commit
8ddb9989e6
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user