Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
c2b51d8cf33bed92b68ee0a8e3c28411e43faffd
/
.
/
test
/
CodeGen
/
conditional.c
blob: 15359e0c8ac183e809a809d2f513ae992d8b1fdc [
file
] [
log
] [
blame
]
// RUN: clang -emit-llvm %s
float
test1
(
int
cond
,
float
a
,
float
b
)
{
return
cond
?
a
:
b
;
}
double
test2
(
int
cond
,
float
a
,
double
b
)
{
return
cond
?
a
:
b
;
}
void
f
();
void
test3
(){
1
?
f
()
:
(
void
)
0
;
}