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
Merge from mainline.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20040123-1.c
blob
2a73382dd94b3c982b6fe849907caae95211635c
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
/* { dg-final { scan-assembler "abort" } } */
4
5
extern
void
abort
(
void
);
6
extern
char
a
[];
7
8
void
foo
(
void
)
9
{
10
if
((
void
*)
a
== (
void
*)
0x4000
UL
)
11
abort
();
12
}