The PBQP transformer still works in-place...
authorSebastian Buchwald <Sebastian.Buchwald@kit.edu>
Tue, 12 Aug 2008 17:23:03 +0000 (17:23 +0000)
committerSebastian Buchwald <Sebastian.Buchwald@kit.edu>
Tue, 12 Aug 2008 17:23:03 +0000 (17:23 +0000)
[r21131]

ir/be/ia32/ia32_common_transform.c

index 8226bbb..d596b08 100644 (file)
@@ -599,8 +599,12 @@ ir_node *gen_ASM(ir_node *node)
                }
 
                if (input == NULL) {
+#ifdef FIRM_GRGEN_BE
+                       input         = get_irn_n(node, i);
+#else
                        ir_node *pred = get_irn_n(node, i);
                        input         = be_transform_node(pred);
+#endif
 
                        if (parsed_constraint.cls == NULL
                                        && parsed_constraint.same_as < 0) {