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

Side by Side Diff: fusl/src/signal/arm/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/arm/restore.s ('k') | fusl/src/signal/block.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 .syntax unified
2 .global sigsetjmp
3 .global __sigsetjmp
4 .type sigsetjmp,%function
5 .type __sigsetjmp,%function
6 sigsetjmp:
7 __sigsetjmp:
8 tst r1,r1
9 beq setjmp
10
11 str lr,[r0,#256]
12 str r4,[r0,#260+8]
13 mov r4,r0
14
15 bl setjmp
16
17 mov r1,r0
18 mov r0,r4
19 ldr lr,[r0,#256]
20 ldr r4,[r0,#260+8]
21
22 .hidden __sigsetjmp_tail
23 b __sigsetjmp_tail
OLDNEW
« no previous file with comments | « fusl/src/signal/arm/restore.s ('k') | fusl/src/signal/block.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698