diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2013-01-24 19:44:23 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2013-01-24 19:44:23 +0000 |
commit | f6b1e65ec393b757a70cb30b0d8ab0ed1af3dedf (patch) | |
tree | df60a3ed3befa98bc7bd75b2c51377fb20837ea7 /libgo/runtime/lfstack.c | |
parent | f5ba49ac2e76583f732bc2cdb76ed54e59bffd09 (diff) | |
download | gcc-f6b1e65ec393b757a70cb30b0d8ab0ed1af3dedf.zip gcc-f6b1e65ec393b757a70cb30b0d8ab0ed1af3dedf.tar.gz gcc-f6b1e65ec393b757a70cb30b0d8ab0ed1af3dedf.tar.bz2 |
re PR go/46986 (Go is not supported on Darwin)
PR go/46986
all: prepend #__USER_LABEL_PREFIX__ to mangled Go symbols
For old-fashioned Darwin.
From-SVN: r195438
Diffstat (limited to 'libgo/runtime/lfstack.c')
-rw-r--r-- | libgo/runtime/lfstack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/runtime/lfstack.c b/libgo/runtime/lfstack.c index c805be8..0f8ea6e 100644 --- a/libgo/runtime/lfstack.c +++ b/libgo/runtime/lfstack.c @@ -57,7 +57,7 @@ runtime_lfstackpop(uint64 *head) } LFNode* runtime_lfstackpop2(uint64*) - asm("runtime.lfstackpop2"); + __asm__ (GOSYM_PREFIX "runtime.lfstackpop2"); LFNode* runtime_lfstackpop2(uint64 *head) |