|
From: Dirk M. <dm...@gm...> - 2005-12-09 18:13:22
|
Hi, there is a strict aliasing violation in VEX. it tries to print the memory of a "double" by casting it to "ULong" and then reading it as "long long int" for printf. double and ulong however may not alias. The fix is rather simple, just accessing the memory via F64i fixes the issue, since both are a union, and the second one is declared ULong. Below is the patch, would be great if this could be committed to VEX (3_1 and trunk). Thanks, Dirk |