fix compare instruction syntax in compile-powerpc.S

This commit is contained in:
Joel Dice 2009-02-18 17:46:07 -07:00
parent 324caaf98b
commit a9e85e5de8

View File

@ -119,12 +119,12 @@ LOCAL(test):
lwz r8,44(r1)
LOCAL(void):
cmplw VOID_TYPE,r8
cmplwi r8,VOID_TYPE
bne LOCAL(int64)
b LOCAL(exit)
LOCAL(int64):
cmplw INT64_TYPE,r8
cmplwi r8,INT64_TYPE
bne LOCAL(int32)
b LOCAL(exit)