make verifier a bit less strict about keeps
[libfirm] / ir / be / ia32 / ia32_new_nodes.c
index 4645fce..aaf4f87 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
@@ -263,12 +263,6 @@ static int ia32_dump_node(ir_node *n, FILE *F, dump_reason_t reason) {
                                case ia32_am_Source:
                                        fprintf(F, "source only (Load)");
                                        break;
-                               case ia32_am_Dest:
-                                       fprintf(F, "dest only (Load+Store)");
-                                       break;
-                               case ia32_am_Full:
-                                       fprintf(F, "full");
-                                       break;
                                default:
                                        fprintf(F, "unknown (%d)", get_ia32_am_support(n));
                                        break;
@@ -784,6 +778,11 @@ void set_ia32_flags(ir_node *node, arch_irn_flags_t flags) {
        attr->data.flags  = flags;
 }
 
+void add_ia32_flags(ir_node *node, arch_irn_flags_t flags) {
+       ia32_attr_t *attr  = get_ia32_attr(node);
+       attr->data.flags  |= flags;
+}
+
 /**
  * Returns the result register slots of an ia32 node.
  */