mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
fd39b30a7a
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14126 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
187 B
LLVM
13 lines
187 B
LLVM
declare bool "llvm.isunordered"(float, float)
|
|
|
|
implementation
|
|
|
|
; Test llvm intrinsics
|
|
;
|
|
void "void"(int, int)
|
|
begin
|
|
%c = call bool %llvm.isunordered(float 0.0, float 1.0)
|
|
ret void
|
|
end
|
|
|