Last change
on this file was
e16e8f2,
checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago
|
bootstuff
|
-
Property mode set to
100644
|
File size:
261 bytes
|
Rev | Line | |
---|
[e16e8f2] | 1 | /* |
---|
| 2 | * arch/i386/libgcc/__negdi2.S |
---|
| 3 | * |
---|
| 4 | * 64-bit negation |
---|
| 5 | */ |
---|
| 6 | |
---|
| 7 | .text |
---|
| 8 | .align 4 |
---|
| 9 | .globl __negdi2 |
---|
| 10 | .type __negdi2,@function |
---|
| 11 | __negdi2: |
---|
| 12 | #ifndef REGPARM |
---|
| 13 | movl 4(%esp),%eax |
---|
| 14 | movl 8(%esp),%edx |
---|
| 15 | #endif |
---|
| 16 | negl %edx |
---|
| 17 | negl %eax |
---|
| 18 | sbbl $0,%edx |
---|
| 19 | ret |
---|
| 20 | |
---|
| 21 | .size __negdi2,.-__negdi2 |
---|
Note: See
TracBrowser
for help on using the repository browser.