mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-31 11:50:57 +08:00
runtime: Fix cast error in print.c on 32-bit systems.
From-SVN: r187889
This commit is contained in:
parent
b7d56bdfe9
commit
e5159e6070
@ -136,7 +136,7 @@ void
|
||||
runtime_printpc(void *p __attribute__ ((unused)))
|
||||
{
|
||||
runtime_prints("PC=");
|
||||
runtime_printhex((uint64)runtime_getcallerpc(p));
|
||||
runtime_printhex((uint64)(uintptr)runtime_getcallerpc(p));
|
||||
}
|
||||
|
||||
void
|
||||
|
Loading…
x
Reference in New Issue
Block a user