blob: adde19361b1b8b5426cc424c38d8f3d777bb4776 [file] [log] [blame]
// RUN: %clang_cc1 %s -x cl -cl-single-precision-constant -emit-llvm -o - | FileCheck %s
float fn(float f) {
// CHECK: fmul float
// CHECK: fadd float
return f*2. + 1.;
}