repo.or.cz
/
uclibc-ng.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ldso: Fix compile-error on noMMU
[uclibc-ng.git]
/
libc
/
sysdeps
/
linux
/
sparc
/
sparcv9
/
umul.S
blob
e65e4b95fd5c4fa10e21f62b4d59780099072830
1
/*
2
* Sparc v9 has multiply.
3
*/
4
5
.text
6
.align 32
7
ENTRY(.umul)
8
9
srl %o0, 0, %o0
10
srl %o1, 0, %o1
11
mulx %o0, %o1, %o0
12
retl
13
srlx %o0, 32, %o1
14
15
END(.umul)