diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-04-18 17:31:00 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-04-18 17:31:00 +0000 |
commit | e1c2f29025499e433151a9252eabaeef1965acd4 (patch) | |
tree | 0b2c979ee40c2a98f902aeecce0eb19e260b7c02 /libgo | |
parent | e84b920c7c572f009e90ab39bab51c715de99c84 (diff) | |
download | gcc-e1c2f29025499e433151a9252eabaeef1965acd4.zip gcc-e1c2f29025499e433151a9252eabaeef1965acd4.tar.gz gcc-e1c2f29025499e433151a9252eabaeef1965acd4.tar.bz2 |
libgo: Fix append declaration.
From Rainer Orth.
From-SVN: r172659
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/runtime/go-append.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/runtime/go-append.c b/libgo/runtime/go-append.c index e501f30..261d85b 100644 --- a/libgo/runtime/go-append.c +++ b/libgo/runtime/go-append.c @@ -15,7 +15,7 @@ this, we will always split the stack, because of memcpy and memmove. */ extern struct __go_open_array -__go_append (struct __go_open_array, void *, size_t, size_t) +__go_append (struct __go_open_array, void *, uintptr_t, uintptr_t) __attribute__ ((no_split_stack)); struct __go_open_array |