repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Improve compatibility with older versions of Windows.
[llvm/msp430.git]
/
test
/
FrontendC
/
2002-02-13-ConditionalInCall.c
blob
0dad6ff5c2f4b40c3494a4db8a1cbeb52daec284
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3
/* Test problem where bad code was generated with a ?: statement was
4
in a function call argument */
5
6
void
foo
(
int
,
double
,
float
);
7
8
void
bar
(
int
x
) {
9
foo
(
x
,
x
?
1.0
:
12.5
,
1.0
f
);
10
}
11