blob: adde19361b1b8b5426cc424c38d8f3d777bb4776 [file] [log] [blame]
Peter Collingbourne0b69e1a2010-12-04 01:50:56 +00001// RUN: %clang_cc1 %s -x cl -cl-single-precision-constant -emit-llvm -o - | FileCheck %s
2
3float fn(float f) {
4 // CHECK: fmul float
5 // CHECK: fadd float
6 return f*2. + 1.;
7}