Author: azuroth
Date: Sat Sep 24 21:20:05 2005
New Revision: 9237

Modified:
   branches/leo-ctx5/docs/jit.pod
Log:
With something like '(a>=0) : 0 ? a', swapped ? and : around.


Modified: branches/leo-ctx5/docs/jit.pod
==============================================================================
--- branches/leo-ctx5/docs/jit.pod      (original)
+++ branches/leo-ctx5/docs/jit.pod      Sat Sep 24 21:20:05 2005
@@ -189,7 +189,7 @@ this feature, the definition of mapped r
 
     #define MAP(i) OMAP(i)
     #undef MAP
-    #define MAP(i) (i) >= 0 : 0 ? OMAP(i)
+    #define MAP(i) (i) >= 0 ? 0 : OMAP(i)
 
 =item Parrot_jit_emit_get_base_reg_no(pc)
 

Reply via email to