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

Side by Side Diff: fusl/src/signal/powerpc/sigsetjmp.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/signal/powerpc/restore.s ('k') | fusl/src/signal/psiginfo.c » ('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 .global sigsetjmp
2 .global __sigsetjmp
3 .type sigsetjmp,%function
4 .type __sigsetjmp,%function
5 sigsetjmp:
6 __sigsetjmp:
7 cmpwi cr7, 4, 0
8 beq- cr7, 1f
9
10 mflr 5
11 stw 5, 448(3)
12 stw 16, 448+4+8(3)
13 mr 16, 3
14
15 .hidden ___setjmp
16 bl ___setjmp
17
18 mr 4, 3
19 mr 3, 16
20 lwz 5, 448(3)
21 mtlr 5
22 lwz 16, 448+4+8(3)
23
24 .hidden __sigsetjmp_tail
25 b __sigsetjmp_tail
26
27 1: b ___setjmp
OLDNEW
« no previous file with comments | « fusl/src/signal/powerpc/restore.s ('k') | fusl/src/signal/psiginfo.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698