diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-18 17:31:00 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-18 17:31:00 +0000 |
commit | 416af72cfccdbf5b20ce81a585b858f4c7baec19 (patch) | |
tree | 0b2c979ee40c2a98f902aeecce0eb19e260b7c02 /libgo | |
parent | 42be2202fc2ad802bc61e29eac492a13493c5bce (diff) | |
download | gcc-416af72cfccdbf5b20ce81a585b858f4c7baec19.tar.gz |
libgo: Fix append declaration.
From Rainer Orth.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@172659 138bc75d-0d04-0410-961f-82ee72b054a4
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 e501f3066a9..261d85b5ba9 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 |