[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / ExecutionEngine / fma3-jit.ll
blobbe1653a0fd19f3eceb00a861de41358198ed3814
1 ; RUN: %lli -jit-kind=mcjit %s | FileCheck %s
2 ; RUN: %lli %s | FileCheck %s
3 ; REQUIRES: fma3
4 ; CHECK: 12.000000
6 @msg_double = internal global [4 x i8] c"%f\0A\00"
8 declare i32 @printf(i8*, ...)
10 define i32 @main() {
11   %fma = tail call double @llvm.fma.f64(double 3.0, double 3.0, double 3.0) nounwind readnone
13   %ptr1 = getelementptr [4 x i8], [4 x i8]* @msg_double, i32 0, i32 0
14   call i32 (i8*,...) @printf(i8* %ptr1, double %fma)
16   ret i32 0
19 declare double @llvm.fma.f64(double, double, double) nounwind readnone