From e7e2050266146a06f4fa6af0725ab081e8ef291b Mon Sep 17 00:00:00 2001 From: Keno Fischer Date: Sun, 21 Aug 2016 18:45:29 -0400 Subject: [PATCH] Fix invalid assembly directive caught by clang Similar to the x86_64 changes a while back --- i387/bsd_asm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i387/bsd_asm.h b/i387/bsd_asm.h index e878029..93ac617 100644 --- a/i387/bsd_asm.h +++ b/i387/bsd_asm.h @@ -89,7 +89,7 @@ #define CNAME(csym) _##csym #define HIDENAME(asmsym) .asmsym #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): #endif