Author: kjs
Date: Fri Aug 15 07:11:47 2008
New Revision: 30252

Modified:
   trunk/compilers/pirc/new/pirsymbol.c

Log:
[pirc/new] line too long in pirsymbol.c; this is now fixed.

Modified: trunk/compilers/pirc/new/pirsymbol.c
==============================================================================
--- trunk/compilers/pirc/new/pirsymbol.c        (original)
+++ trunk/compilers/pirc/new/pirsymbol.c        Fri Aug 15 07:11:47 2008
@@ -253,7 +253,11 @@
 int
 color_reg(struct lexer_state *lexer, pir_type type, int regno) {
     pir_reg *reg = find_register(lexer, type, regno);
-    if (reg) /* was the register already used, then it was already colored by 
the register allocator. */
+
+    /* was the register already used, then it was already colored by
+     * the register allocator.
+     */
+    if (reg)
         return reg->color;
 
     /* we're still here, so the register was not used yet; do that now. */

Reply via email to