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
Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr18241-5.c
blob
0ddb55f75be1b7328d51da1511b065c5de993035
1
/* { dg-do run } */
2
/* { dg-options "-O1" } */
3
4
void
abort
(
void
);
5
6
int
main
()
7
{
8
int
a
;
9
volatile
int
*
b
= &
a
;
10
a
=
1
;
11
if
(*
b
!=
1
)
12
abort
();
13
return
0
;
14
}