mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-10-31 09:11:13 +00:00
85a14bb586
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14188 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
321 B
Plaintext
10 lines
321 B
Plaintext
; RUN: llvm-as < %s | llc -march=x86 | grep com | wc -l > %t2
|
|
; RUN: grep 'COM =' %s | grep -v grep | wc -l > %t1
|
|
; RUN: diff %t1 %t2
|
|
declare bool %llvm.isunordered(double,double)
|
|
|
|
bool %test1(double %X, double %Y) { ;; Returns isunordered(X,Y)
|
|
%COM = call bool %llvm.isunordered(double %X, double %Y)
|
|
ret bool %COM
|
|
}
|