diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2017-10-11 21:16:49 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2017-10-11 21:16:49 +0000 |
commit | 3ff1b2b0a91e25bf5b6499025a7c336a0b71b75f (patch) | |
tree | d8d689d283d005e340df4d2e9459f6f463c13390 /libgo/runtime/go-caller.c | |
parent | 07a5fe52c547185a5fc9ef5b0f205016c3ee35f3 (diff) | |
download | gcc-3ff1b2b0a91e25bf5b6499025a7c336a0b71b75f.zip gcc-3ff1b2b0a91e25bf5b6499025a7c336a0b71b75f.tar.gz gcc-3ff1b2b0a91e25bf5b6499025a7c336a0b71b75f.tar.bz2 |
runtime: fix issues on AIX about uintptr(_t)
Reviewed-on: https://go-review.googlesource.com/69891
From-SVN: r253664
Diffstat (limited to 'libgo/runtime/go-caller.c')
-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 360bae6..ee8abdc 100644 --- a/libgo/runtime/go-caller.c +++ b/libgo/runtime/go-caller.c @@ -159,7 +159,7 @@ syminfo_callback (void *data, uintptr_t pc __attribute__ ((unused)), /* Set *VAL to the value of the symbol for PC. */ static _Bool -__go_symbol_value (uintptr_t pc, uintptr_t *val) +__go_symbol_value (uintptr pc, uintptr *val) { *val = 0; backtrace_syminfo (__go_get_backtrace_state (), pc, syminfo_callback, |