Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f8fd82ba49827db0f6a6ba00c55a7b56b12a19fa
/
.
/
test
/
CodeGen
/
conditional-gnu-ext.c
blob: f4ac81bf5934ac100160c17483222d07e06d34b2 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm %s -o %t
// PR1824
int
foo
(
int
x
,
short
y
)
{
return
x
?:
y
;
}
// rdar://6586493
float
test
(
float
x
,
int
Y
)
{
return
Y
!=
0
?
:
x
;
}