mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
36a0947820
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81290 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
500 B
LLVM
17 lines
500 B
LLVM
; RUN: llc < %s -mtriple=i386-apple-darwin | not grep fstpt
|
|
; PR3457
|
|
; rdar://6548010
|
|
|
|
define void @foo(double* nocapture %P) nounwind {
|
|
entry:
|
|
%0 = tail call double (...)* @test() nounwind ; <double> [#uses=2]
|
|
%1 = tail call double (...)* @test() nounwind ; <double> [#uses=2]
|
|
%2 = fmul double %0, %0 ; <double> [#uses=1]
|
|
%3 = fmul double %1, %1 ; <double> [#uses=1]
|
|
%4 = fadd double %2, %3 ; <double> [#uses=1]
|
|
store double %4, double* %P, align 8
|
|
ret void
|
|
}
|
|
|
|
declare double @test(...)
|