diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-19 15:02:27 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-19 15:02:27 +0000 |
commit | 8011b3ea7f5f8babca8a61f38c04eb3bb0e2d5e8 (patch) | |
tree | 1c2fe57cb43ee04f4e8433b61023e7d6d4cd29bc /libgo | |
parent | f3d6d99e7b0120ebedc4934983c464053af3c917 (diff) | |
download | gcc-8011b3ea7f5f8babca8a61f38c04eb3bb0e2d5e8.tar.gz |
runtime: Update for change to libbacktrace library.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205031 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/runtime/go-caller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/runtime/go-caller.c b/libgo/runtime/go-caller.c index c49704df416..e97b85097bc 100644 --- a/libgo/runtime/go-caller.c +++ b/libgo/runtime/go-caller.c @@ -135,7 +135,7 @@ __go_file_line (uintptr pc, String *fn, String *file, intgo *line) static void syminfo_callback (void *data, uintptr_t pc __attribute__ ((unused)), const char *symname __attribute__ ((unused)), - uintptr_t address) + uintptr_t address, uintptr_t size __attribute__ ((unused))) { uintptr_t *pval = (uintptr_t *) data; |