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
Handle Octeon 3 not supporting MIPS paired-single instructions.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
mips
/
pr33635-1.c
blob
f849b396ea0f1267a3b4dbf44c875ac3f81a7935
1
/* { dg-options "-mabi=64" } */
2
3
NOMIPS16
long double
__powitf2
(
long double
x
,
int
m
)
4
{
5
long double
y
=
x
;
6
while
(
m
>>=
1
)
7
{
8
x
=
x
*
x
;
9
if
(
m
%
2
)
10
y
=
y
*
x
;
11
}
12
return
y
;
13
}