repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr27302.c
blob
0e41fc385e0a6da809893ae2a8800e8441272b1a
1
/* { dg-do run } */
2
3
extern
void
link_error
(
void
);
4
5
void
test0
(
int
a
,
int
b
)
6
{
7
if
((
a
<
b
) != (
b
>
a
))
8
link_error
();
9
}
10
11
int
main
()
12
{
13
test0
(
1
,
2
);
14
return
0
;
15
}