src/share/vm/oops/method.hpp

changeset 7635
367427923e39
parent 7365
600c44255e5f
child 7636
fdde6a70ea85
     1.1 --- a/src/share/vm/oops/method.hpp	Tue Mar 17 02:15:01 2015 -0400
     1.2 +++ b/src/share/vm/oops/method.hpp	Tue Mar 17 01:56:32 2015 -0700
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2015, Oracle and/or its affiliates. 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 @@ -714,6 +714,8 @@
    1.11    void set_is_old()                                 { _access_flags.set_is_old(); }
    1.12    bool is_obsolete() const                          { return access_flags().is_obsolete(); }
    1.13    void set_is_obsolete()                            { _access_flags.set_is_obsolete(); }
    1.14 +  bool is_deleted() const                           { return access_flags().is_deleted(); }
    1.15 +  void set_is_deleted()                             { _access_flags.set_is_deleted(); }
    1.16    bool on_stack() const                             { return access_flags().on_stack(); }
    1.17    void set_on_stack(const bool value);
    1.18  

mercurial