Skip to content

Commit 47bd273

Browse files
committed
[cli/trampolines]: Fix i686-w64-mingw32 name mangling
Although we were dispatching to the right symbol, the name of the re-exported symbol was lacking its leading underscore. (cherry picked from commit 6937468)
1 parent bbe18e1 commit 47bd273

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/trampolines/trampolines_i686.S

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020

2121
#define XX(name) \
2222
DEBUGINFO(name); \
23-
.global name; \
23+
.global CNAME(name); \
2424
.cfi_startproc; \
25-
name##:; \
25+
CNAME(name)##:; \
2626
CET_START(); \
2727
jmpl *(CNAME(name##_addr)); \
2828
ud2; \

0 commit comments

Comments
 (0)