repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.target
/
mips
/
pr26765.c
blob
0b70b56ab4478d91e113d1409e2d4b0eeecb91be
1
/* PR target/pr26765
2
This testcase used to trigger an unrecognizable insn. */
3
4
/* { dg-do compile } */
5
/* { dg-options "-O2" } */
6
7
__thread
int
*
a
=
0
;
8
9
void
foo
(
void
)
10
{
11
extern
int
*
b
;
12
b
= (
int
*) ((*
a
));
13
}