From: Arno P. <ar...@pu...> - 2010-11-23 17:58:22
|
On 11/23/10 7:50 AM, Troy Gaines wrote: > Ok, thanks for the quick fix! You guys work fast. :) only because the issues you reported are easy to fix. Don't expect those turnaround times for more complicated problems. ;) > I did see one other thing that might be a problem as well related to > this issue. > > In xmlvm.m, there is this line of code which is used to allocate the > correct array size. Seems like it might need to be sizeof(long long). > > case 8: // long > sizeOfBaseType = sizeof(long); You are right. Just fixed it. > Also, I see these all throughout my code. I'm not sure if they're an > issue yet. Is there a way I can implement these? > > ERROR("dex:neg-long"); > ERROR("dex:shr-long-2addr"); > ERROR("dex:ushr-int-2addr"); > ERROR("dex:ushr-int"); Just added these missing instructions as well. Arno |