repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix unused warnings.
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20000922-1.c
blob
0fef966e6763aa0b8bf72cc7aca77a2b2eb3ceef
1
extern
void
doit
(
int
);
2
void
3
quick_doit
(
int
x
)
4
{
5
#ifdef __OPTIMIZE__
6
if
(
__builtin_constant_p
(
x
)
7
&&
x
!=
0
)
8
asm
volatile
(
"%0"
: :
"i#*X"
(
x
));
9
else
10
#endif
11
doit
(
x
);
12
}