comparison src/share/vm/code/scopeDesc.hpp @ 14235:933c8a58c9dc

8026413: ScopeDesc::is_equal is declared in header file but not implemented Reviewed-by: kvn
author twisti
date Thu, 09 Jan 2014 18:09:59 -0800
parents da91efe96a93
children d8041d695d19
comparison
equal deleted inserted replaced
14234:68343762fd63 14235:933c8a58c9dc
1 /* 1 /*
2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
84 // Returns where the scope was decoded 84 // Returns where the scope was decoded
85 int decode_offset() const { return _decode_offset; } 85 int decode_offset() const { return _decode_offset; }
86 86
87 // Tells whether sender() returns NULL 87 // Tells whether sender() returns NULL
88 bool is_top() const; 88 bool is_top() const;
89 // Tells whether sd is equal to this
90 bool is_equal(ScopeDesc* sd) const;
91 89
92 private: 90 private:
93 // Alternative constructor 91 // Alternative constructor
94 ScopeDesc(const ScopeDesc* parent); 92 ScopeDesc(const ScopeDesc* parent);
95 93