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

Side by Side Diff: fusl/src/setjmp/mips-sf/setjmp.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/setjmp/mips-sf/longjmp.sub ('k') | fusl/src/setjmp/mips-sf/setjmp.sub » ('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 __setjmp
4 .global _setjmp
5 .global setjmp
6 .type __setjmp,@function
7 .type _setjmp,@function
8 .type setjmp,@function
9 __setjmp:
10 _setjmp:
11 setjmp:
12 sw $ra, 0($4)
13 sw $sp, 4($4)
14 sw $16, 8($4)
15 sw $17, 12($4)
16 sw $18, 16($4)
17 sw $19, 20($4)
18 sw $20, 24($4)
19 sw $21, 28($4)
20 sw $22, 32($4)
21 sw $23, 36($4)
22 sw $30, 40($4)
23 sw $28, 44($4)
24 jr $ra
25 li $2, 0
OLDNEW
« no previous file with comments | « fusl/src/setjmp/mips-sf/longjmp.sub ('k') | fusl/src/setjmp/mips-sf/setjmp.sub » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698