repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Rename llvm-gcc4 to llvm-gcc.
[llvm-complete.git]
/
test
/
CFrontend
/
2002-07-14-MiscTests2.c
blob
ac58926abf298be1ff1b6a97c9d6a7a551cb175d
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3
4
// Test ?: in function calls
5
extern
fp
(
int
,
char
*);
6
char
*
Ext
;
7
void
8
__bb_exit_func
(
void
)
9
{
10
fp
(
12
,
Ext
?
Ext
:
"<none>"
);
11
}
12
13