Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
c7b5ed6da7410849b51ba9a9ea04d2cc7b720f48
/
.
/
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.
;
}