Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
5ae84f274c4e1e9400fbd5d4aaa1d0328644a23e
/
.
/
test
/
CodeGen
/
cl-single-precision-constant.c
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.
;
}