diff options
author | dmick <none@none> | 2005-08-26 17:29:52 -0700 |
---|---|---|
committer | dmick <none@none> | 2005-08-26 17:29:52 -0700 |
commit | 89518a1cfe5021ecf5ad8d04c40f53cf947e95d9 (patch) | |
tree | b859132fde3267cd8363bef3c8e6e1a9b72255b4 /usr/src/cmd/mdb/common/modules/genunix/genunix.c | |
parent | 817a6df8b3316f1bd1c398f765f71964d8966da4 (diff) | |
download | illumos-gate-89518a1cfe5021ecf5ad8d04c40f53cf947e95d9.tar.gz |
6241314 ctfconvert should understand SPARC real types in DWARF
6313293 ctfstabs is confused by gcc's output
6268862 add more gcc support routines to a few places
6272005 gcc and cmd/mdb don't get along
6273966 gcc and common/dis don't get along
--HG--
rename : usr/src/cmd/mdb/intel/ia32/libstand/muldiv.s => deleted_files/usr/src/cmd/mdb/intel/ia32/libstand/muldiv.s
rename : usr/src/cmd/mdb/intel/ia32/libstand/sys/archsalib.h => deleted_files/usr/src/cmd/mdb/intel/ia32/libstand/sys/archsalib.h
Diffstat (limited to 'usr/src/cmd/mdb/common/modules/genunix/genunix.c')
-rw-r--r-- | usr/src/cmd/mdb/common/modules/genunix/genunix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/cmd/mdb/common/modules/genunix/genunix.c b/usr/src/cmd/mdb/common/modules/genunix/genunix.c index b79263ee64..36dfa16eb6 100644 --- a/usr/src/cmd/mdb/common/modules/genunix/genunix.c +++ b/usr/src/cmd/mdb/common/modules/genunix/genunix.c @@ -629,7 +629,7 @@ lg_walk_init(mdb_walk_state_t *wsp) } wsp->walk_addr = (uintptr_t)sym.st_value; - wsp->walk_data = (void *)(sym.st_value + sym.st_size); + wsp->walk_data = (void *)(uintptr_t)(sym.st_value + sym.st_size); return (WALK_NEXT); } |