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
2018-03-08 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
nios2
/
nios2-rdwrctl-1.c
blob
922942ab980f9b3c2720aeae2eb80ad3d5a43415
1
/* { dg-do compile } */
2
3
volatile
int
res
;
4
5
void
x
()
6
{
7
__builtin_wrctl
(
0
,
res
);
8
__builtin_wrctl
(
15
,
res
);
9
__builtin_wrctl
(
31
,
res
);
10
11
res
=
__builtin_rdctl
(
0
);
12
res
=
__builtin_rdctl
(
15
);
13
res
=
__builtin_rdctl
(
31
);
14
}