|
From: Nicholas N. <nj...@cs...> - 2005-08-04 23:25:42
|
On Thu, 4 Aug 2005, Naveen Kumar wrote:
> Hi all,
> I am getting the following error
>
> valgrind: dwarf.c:1750 (read_encoded_Addr): the
> 'impossible' happened.
> ==274148== at 0xB00166CC: ???
>
>
> Is this something to do with the debug info present in
> the elf file or is it due to something else ?
The code says:
case DW_EH_PE_datarel:
vg_assert(0);
base = /* data base address */ 0;
break;
It looks like this is a case that hasn't been implemented properly yet in
the CIE reader. You could try commenting it out and see what happens.
Julian might have more comments.
N
|