1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 22:12:57 +02:00
llvm-mirror/test/CodeGen/PowerPC/unsafe-math.ll

11 lines
295 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | llc -march=ppc32 | grep fmul | count 2
; RUN: llvm-as < %s | llc -march=ppc32 -enable-unsafe-fp-math | \
; RUN: grep fmul | count 1
2007-01-09 00:03:19 +01:00
define double @foo(double %X) {
%tmp1 = fmul double %X, 1.23
%tmp2 = fmul double %tmp1, 4.124
2007-01-09 00:03:19 +01:00
ret double %tmp2
}