OpenJDK / amber / amber
changeset 54259:11464bf82dce
8216200: BCEscapeAnalyzer::ArgumentMap::set_intersect() is incorrect
Summary: Removed incorrect/unused method
Reviewed-by: thartmann
author | zgu |
---|---|
date | Mon, 07 Jan 2019 10:41:29 -0500 |
parents | 8663bd437bb8 |
children | 3cdf4d5148a8 |
files | src/hotspot/share/ci/bcEscapeAnalyzer.cpp |
diffstat | 1 files changed, 0 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/hotspot/share/ci/bcEscapeAnalyzer.cpp Mon Jan 07 09:17:08 2019 -0500 +++ b/src/hotspot/share/ci/bcEscapeAnalyzer.cpp Mon Jan 07 10:41:29 2019 -0500 @@ -79,7 +79,6 @@ void add_unknown() { _bits = UNKNOWN; } void add_allocated() { _bits = ALLOCATED; } void set_union(const ArgumentMap &am) { _bits |= am._bits; } - void set_intersect(const ArgumentMap &am) { _bits |= am._bits; } void set_difference(const ArgumentMap &am) { _bits &= ~am._bits; } void operator=(const ArgumentMap &am) { _bits = am._bits; } bool operator==(const ArgumentMap &am) { return _bits == am._bits; }