1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 23:42:52 +01:00
llvm-mirror/test/CodeGen/CBackend/fneg.ll
Dan Gohman 31fc8d27b1 Fix an erroneous check for isFNeg; the FNeg case is handled
a few lines later on.

llvm-svn: 72904
2009-06-04 23:43:29 +00:00

8 lines
120 B
LLVM

; RUN: llvm-as < %s | llc -march=c
define void @func() nounwind {
entry:
%0 = fsub double -0.0, undef
ret void
}