mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 04:23:41 +01:00
Fix invalid assembly directive caught by clang
Similar to the x86_64 changes a while back
This commit is contained in:
parent
71e79eb6f7
commit
e7e2050266
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@
|
||||||
#define CNAME(csym) _##csym
|
#define CNAME(csym) _##csym
|
||||||
#define HIDENAME(asmsym) .asmsym
|
#define HIDENAME(asmsym) .asmsym
|
||||||
#define _ENTRY(x) _START_ENTRY_WIN; \
|
#define _ENTRY(x) _START_ENTRY_WIN; \
|
||||||
.globl CNAME(x); .section .drectve; .ascii " -export:" #x; \
|
.globl CNAME(x); .section .drectve; .ascii " -export:", #x; \
|
||||||
.section .text; .def CNAME(x); .scl 2; .type 32; .endef; CNAME(x):
|
.section .text; .def CNAME(x); .scl 2; .type 32; .endef; CNAME(x):
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue