https://bugs.kde.org/show_bug.cgi?id=452758

--- Comment #34 from Mark Wielaard <m...@klomp.org> ---
For  support DW_FORM_addrx3 and DW_FORM_strx3  it would be easier/clearer imho
to use #if defined(VG_BIGENDIAN) instead of doing a runtime trick.

Is the big endian variant correct?

return c1 << 16 | c2 << 8 | c3;

Should that be:

return c1 << 32 | c2 << 16 | c3 << 8;

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to