Correctly emit constants in some ALU instructions.
authorDavid Given <dg@cowlark.com>
Sun, 19 May 2013 22:19:10 +0000 (23:19 +0100)
committerDavid Given <dg@cowlark.com>
Sun, 19 May 2013 22:19:10 +0000 (23:19 +0100)
--HG--
branch : dtrg-videocore

mach/vc4/as/mach5.c

index 768d2ea..056a8b7 100644 (file)
@@ -40,7 +40,7 @@ void alu_instr_lit(quad op, int cc, int rd, int ra, quad value)
 
        /* 32 bit medium form? */
 
-    if (value >= 0x1f)
+    if (value <= 0x1f)
     {
         emit2(B16(11000000,00000000) | (op<<5) | (rd<<0));
         emit2(B16(00000000,01000000) | (ra<<11) | (cc<<7) | (value<<0));