1 ; RUN: %lli -jit-kind=mcjit %s | FileCheck %s
2 ; RUN: %lli %s | FileCheck %s
6 @msg_double = internal global [4 x i8] c"%f\0A\00"
8 declare i32 @printf(i8*, ...)
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)
19 declare double @llvm.fma.f64(double, double, double) nounwind readnone