1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 15:32:52 +01:00
llvm-mirror/test/Regression/ExecutionEngine/2003-01-10-FUCOM.ll

12 lines
186 B
LLVM
Raw Normal View History

2004-11-07 00:32:43 +01:00
; RUN: llvm-as -f %s -o %t.bc
; RUN: lli %t.bc > /dev/null
2003-01-13 02:03:16 +01:00
int %main() {
%X = add double 0.0, 1.0
%Y = sub double 0.0, 1.0
%Z = seteq double %X, %Y
add double %Y, 0.0
ret int 0
}