< prev index next >

src/hotspot/share/ci/ciFlags.cpp

Print this page
@@ -38,19 +38,22 @@
    }
  
    if (is_final()) {
      st->print(",final");
    }
-   if (is_super()) {
-     st->print(",super");
-   }
    if (is_interface()) {
      st->print(",interface");
    }
    if (is_abstract()) {
      st->print(",abstract");
    }
+   if (is_identity()) {
+     st->print(",identity");
+   }
+   if (is_strict()) {
+     st->print(",strict");
+   }
  }
  
  // ------------------------------------------------------------------
  // ciFlags::print_member_flags
  void ciFlags::print_member_flags(outputStream* st) {
< prev index next >