src/share/vm/c1/c1_Compilation.hpp

changeset 1832
b4776199210f
parent 435
a61af66fc99e
child 1907
c18cbe5936b8
     1.1 --- a/src/share/vm/c1/c1_Compilation.hpp	Mon Apr 26 11:27:21 2010 -0700
     1.2 +++ b/src/share/vm/c1/c1_Compilation.hpp	Mon Apr 26 23:59:45 2010 -0700
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright 1999-2007 Sun Microsystems, Inc.  All Rights Reserved.
     1.6 + * Copyright 1999-2010 Sun Microsystems, Inc.  All Rights Reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -70,7 +70,6 @@
    1.11    int                _max_spills;
    1.12    FrameMap*          _frame_map;
    1.13    C1_MacroAssembler* _masm;
    1.14 -  bool               _needs_debug_information;
    1.15    bool               _has_exception_handlers;
    1.16    bool               _has_fpu_code;
    1.17    bool               _has_unsafe_access;
    1.18 @@ -117,7 +116,6 @@
    1.19    // accessors
    1.20    ciEnv* env() const                             { return _env; }
    1.21    AbstractCompiler* compiler() const             { return _compiler; }
    1.22 -  bool needs_debug_information() const           { return _needs_debug_information; }
    1.23    bool has_exception_handlers() const            { return _has_exception_handlers; }
    1.24    bool has_fpu_code() const                      { return _has_fpu_code; }
    1.25    bool has_unsafe_access() const                 { return _has_unsafe_access; }
    1.26 @@ -132,7 +130,6 @@
    1.27    CodeOffsets* offsets()                         { return &_offsets; }
    1.28  
    1.29    // setters
    1.30 -  void set_needs_debug_information(bool f)       { _needs_debug_information = f; }
    1.31    void set_has_exception_handlers(bool f)        { _has_exception_handlers = f; }
    1.32    void set_has_fpu_code(bool f)                  { _has_fpu_code = f; }
    1.33    void set_has_unsafe_access(bool f)             { _has_unsafe_access = f; }

mercurial