src/share/vm/c1/c1_GraphBuilder.hpp

changeset 1939
b812ff5abc73
parent 1907
c18cbe5936b8
child 2138
d5d065957597
     1.1 --- a/src/share/vm/c1/c1_GraphBuilder.hpp	Thu Jun 03 14:20:27 2010 -0700
     1.2 +++ b/src/share/vm/c1/c1_GraphBuilder.hpp	Fri Jun 04 11:18:04 2010 -0700
     1.3 @@ -162,7 +162,6 @@
     1.4    };
     1.5  
     1.6    // for all GraphBuilders
     1.7 -  static bool       _is_initialized;             // true if trap tables were initialized, false otherwise
     1.8    static bool       _can_trap[Bytecodes::number_of_java_codes];
     1.9    static bool       _is_async[Bytecodes::number_of_java_codes];
    1.10  
    1.11 @@ -268,7 +267,6 @@
    1.12    Instruction* append_split(StateSplit* instr);
    1.13  
    1.14    // other helpers
    1.15 -  static bool is_initialized()                   { return _is_initialized; }
    1.16    static bool is_async(Bytecodes::Code code) {
    1.17      assert(0 <= code && code < Bytecodes::number_of_java_codes, "illegal bytecode");
    1.18      return _is_async[code];

mercurial