This repository has been archived by the owner on Dec 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix compile error in arm asm code and remove useless file
- Loading branch information
Showing
4 changed files
with
6 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,6 @@ | |
|
||
TEXT ·getg(SB), NOSPLIT, $0-4 | ||
get_tls(CX) | ||
MOVL g(CX), AX | ||
MOVL AX, ret+0(FP) | ||
MOVL g(CX), AX | ||
MOVL AX, ret+0(FP) | ||
RET |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,6 @@ | |
|
||
TEXT ·getg(SB), NOSPLIT, $0-8 | ||
get_tls(CX) | ||
MOVQ g(CX), AX | ||
MOVQ AX, ret+0(FP) | ||
MOVQ g(CX), AX | ||
MOVQ AX, ret+0(FP) | ||
RET |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,6 @@ | |
#include "textflag.h" | ||
|
||
TEXT ·getg(SB), NOSPLIT, $0-4 | ||
MOVW g, ret+0(FP) | ||
MOVW g, R8 | ||
MOVW R8, ret+0(FP) | ||
RET |
This file was deleted.
Oops, something went wrong.