Skip to content

Commit 0aaace5

Browse files
committed
---
yaml --- r: 6480 b: refs/heads/master c: 3a80d7b h: refs/heads/master v: v3
1 parent 1042394 commit 0aaace5

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 28745aa07f9fad242d9674fde74416f001acc463
2+
refs/heads/master: 3a80d7b0e3f1bdc81ba14459f6615d29476038a7

trunk/src/rt/arch/i386/morestack.S

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,15 @@
5252
.globl UPCALL_CALL_C_STACK
5353
.globl MORESTACK
5454

55+
// FIXME: What about _WIN32?
56+
#if defined(__linux__)
57+
.hidden MORESTACK
58+
#else
59+
#if defined(__APPLE__)
60+
.private_extern MORESTACK
61+
#endif
62+
#endif
63+
5564
#ifdef __ELF__
5665
.type MORESTACK,@function
5766
#endif

trunk/src/rt/arch/x86_64/morestack.S

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,15 @@
3535
.globl UPCALL_CALL_C
3636
.globl MORESTACK
3737

38+
// FIXME: What about _WIN32?
39+
#if defined(__linux__)
40+
.hidden MORESTACK
41+
#else
42+
#if defined(__APPLE__)
43+
.private_extern MORESTACK
44+
#endif
45+
#endif
46+
3847
#ifdef __ELF__
3948
.type MORESTACK,@function
4049
#endif

0 commit comments

Comments
 (0)