repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
slightly increase prettiness.
[llvm/avr.git]
/
test
/
FrontendC
/
2002-07-14-MiscTests2.c
blob
f2c7c81c4daa217c9e7eba3b001b37b80d250264
1
// RUN: %llvmgcc -S %s -o - | llvm-as -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