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

Side by Side Diff: fusl/arch/mips/crt_arch.h

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/arch/mips/bits/user.h ('k') | fusl/arch/mips/ksigaction.h » ('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 __asm__(
2 ".set push\n"
3 ".set noreorder\n"
4 ".text \n"
5 ".global _" START "\n"
6 ".global " START "\n"
7 ".global " START "_data\n"
8 ".type _" START ", @function\n"
9 ".type " START ", @function\n"
10 ".type " START "_data, @function\n"
11 "_" START ":\n"
12 "" START ":\n"
13 " bal 1f \n"
14 " move $fp, $0 \n"
15 "" START "_data: \n"
16 " .gpword " START "_data \n"
17 " .gpword " START "_c \n"
18 ".weak _DYNAMIC \n"
19 ".hidden _DYNAMIC \n"
20 " .gpword _DYNAMIC \n"
21 "1: lw $gp, 0($ra) \n"
22 " subu $gp, $ra, $gp \n"
23 " move $4, $sp \n"
24 " lw $5, 8($ra) \n"
25 " addu $5, $5, $gp \n"
26 " lw $25, 4($ra) \n"
27 " addu $25, $25, $gp \n"
28 " and $sp, $sp, -8 \n"
29 " jalr $25 \n"
30 " subu $sp, $sp, 16 \n"
31 ".set pop \n"
32 );
OLDNEW
« no previous file with comments | « fusl/arch/mips/bits/user.h ('k') | fusl/arch/mips/ksigaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698