Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1329)

Side by Side Diff: fusl/src/internal/mips/syscall.s

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/src/internal/microblaze/syscall.s ('k') | fusl/src/internal/or1k/syscall.s » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 .set noreorder
2
3 .global __syscall
4 .hidden __syscall
5 .type __syscall,@function
6 __syscall:
7 move $2, $4
8 move $4, $5
9 move $5, $6
10 move $6, $7
11 lw $7, 16($sp)
12 lw $8, 20($sp)
13 lw $9, 24($sp)
14 lw $10,28($sp)
15 subu $sp, $sp, 32
16 sw $8, 16($sp)
17 sw $9, 20($sp)
18 sw $10,24($sp)
19 sw $2 ,28($sp)
20 lw $2, 28($sp)
21 syscall
22 beq $7, $0, 1f
23 addu $sp, $sp, 32
24 subu $2, $0, $2
25 1: jr $ra
26 nop
OLDNEW
« no previous file with comments | « fusl/src/internal/microblaze/syscall.s ('k') | fusl/src/internal/or1k/syscall.s » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698