llvm-6502/test/CodeGen/X86/fp-stack-ret.ll
Chris Lattner f4acec1be8 new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34583 91177308-0d34-0410-b5e6-96231b3b80d8
2007-02-25 08:23:01 +00:00

13 lines
469 B
LLVM

; RUN: llvm-as < %s | llc -mtriple=i686-apple-darwin8 -march=x86 | grep fldl &&
; RUN: llvm-as < %s | llc -mtriple=i686-apple-darwin8 -march=x86 | not grep xmm &&
; RUN: llvm-as < %s | llc -mtriple=i686-apple-darwin8 -march=x86 | not grep 'sub.*esp'
; These testcases shouldn't require loading into an XMM register then storing
; to memory, then reloading into an FPStack reg.
define double @test1(double *%P) {
%A = load double* %P
ret double %A
}