added support for joker register
authorChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Thu, 28 Sep 2006 07:54:16 +0000 (07:54 +0000)
committerChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Thu, 28 Sep 2006 07:54:16 +0000 (07:54 +0000)
ir/be/scripts/generate_regalloc_if.pl

index f684c1c..0f310b3 100755 (executable)
@@ -54,6 +54,10 @@ sub translate_reg_type {
                        push(@types, "arch_register_type_ignore");
                }
 
+               if ($t & 8) {
+                       push(@types, "arch_register_type_joker");
+               }
+
                return join(" | ", @types);
        }
 }