mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
4fa2ba6306
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31177 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
341 B
Plaintext
9 lines
341 B
Plaintext
; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah | grep movsd | wc -l | grep 1 &&
|
|
; RUN: llvm-as < %s | llc -march=x86 -mcpu=yonah | grep ucomisd
|
|
declare bool %llvm.isunordered.f64(double,double)
|
|
|
|
bool %test1(double %X, double %Y) { ;; Returns isunordered(X,Y)
|
|
%COM = call bool %llvm.isunordered.f64(double %X, double %Y)
|
|
ret bool %COM
|
|
}
|