Created
November 6, 2015 20:29
-
-
Save thomaslee/166eb542e2edc95ed66a to your computer and use it in GitHub Desktop.
capnproto ppc cast bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(gdb) p reinterpret_cast<void*>(static_cast<uintptr_t>(siginfo.ssi_ptr)) | |
$4 = (void *) 0x0 | |
(gdb) p siginfo.ssi_ptr | |
$5 = 528280977408 | |
(gdb) p (uintptr_t) siginfo.ssi_ptr | |
$6 = 0 | |
(gdb) p sizeof(uintptr_t) | |
$7 = 4 | |
(gdb) p sizeof(siginfo.ssi_ptr) | |
$8 = 8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment