src/share/vm/opto/idealGraphPrinter.cpp

changeset 3040
c7b60b601eb4
parent 2920
a80577f854f9
child 3051
11211f7cb5a0
     1.1 --- a/src/share/vm/opto/idealGraphPrinter.cpp	Wed Jul 27 15:06:35 2011 -0700
     1.2 +++ b/src/share/vm/opto/idealGraphPrinter.cpp	Wed Jul 27 17:28:36 2011 -0700
     1.3 @@ -426,9 +426,6 @@
     1.4      if (flags & Node::Flag_is_Copy) {
     1.5        print_prop("is_copy", "true");
     1.6      }
     1.7 -    if (flags & Node::Flag_is_Call) {
     1.8 -      print_prop("is_call", "true");
     1.9 -    }
    1.10      if (flags & Node::Flag_rematerialize) {
    1.11        print_prop("rematerialize", "true");
    1.12      }
    1.13 @@ -447,24 +444,12 @@
    1.14      if (flags & Node::Flag_is_Branch) {
    1.15        print_prop("is_branch", "true");
    1.16      }
    1.17 -    if (flags & Node::Flag_is_block_start) {
    1.18 -      print_prop("is_block_start", "true");
    1.19 -    }
    1.20 -    if (flags & Node::Flag_is_Goto) {
    1.21 -      print_prop("is_goto", "true");
    1.22 -    }
    1.23      if (flags & Node::Flag_is_dead_loop_safe) {
    1.24        print_prop("is_dead_loop_safe", "true");
    1.25      }
    1.26      if (flags & Node::Flag_may_be_short_branch) {
    1.27        print_prop("may_be_short_branch", "true");
    1.28      }
    1.29 -    if (flags & Node::Flag_is_safepoint_node) {
    1.30 -      print_prop("is_safepoint_node", "true");
    1.31 -    }
    1.32 -    if (flags & Node::Flag_is_pc_relative) {
    1.33 -      print_prop("is_pc_relative", "true");
    1.34 -    }
    1.35  
    1.36      if (C->matcher() != NULL) {
    1.37        if (C->matcher()->is_shared(node)) {

mercurial