Skip to content

Commit e7e2050

Browse files
authored
Fix invalid assembly directive caught by clang
Similar to the x86_64 changes a while back
1 parent 71e79eb commit e7e2050

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

i387/bsd_asm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
#define CNAME(csym) _##csym
9090
#define HIDENAME(asmsym) .asmsym
9191
#define _ENTRY(x) _START_ENTRY_WIN; \
92-
.globl CNAME(x); .section .drectve; .ascii " -export:" #x; \
92+
.globl CNAME(x); .section .drectve; .ascii " -export:", #x; \
9393
.section .text; .def CNAME(x); .scl 2; .type 32; .endef; CNAME(x):
9494
#endif
9595

0 commit comments

Comments
 (0)