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
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
mipscop-1.c
blob
916a571db19a1e6763c8a7a3be4ee86d2e18645b
1
/* { dg-do compile { target mips*-*-* } } */
2
3
#ifndef __mips16
4
register
unsigned int
cp0count
asm
(
"$c0r1"
);
5
6
int
7
main
(
int
argc
,
char
*
argv
[])
8
{
9
unsigned int
d
;
10
11
d
=
cp0count
+
3
;
12
printf
(
"%d
\n
"
,
d
);
13
}
14
#endif