From 196d73b45466dd73c8b018affb8217b661ee3c4b Mon Sep 17 00:00:00 2001 From: Zhengyu Gu Date: Mon, 7 Jan 2019 09:17:08 -0500 Subject: [PATCH] 8216199: Local variable arg defined but never used in BCEscapeAnalyzer::compute_escape_for_intrinsic() Removed unused local variable Reviewed-by: thartmann --- src/hotspot/share/ci/bcEscapeAnalyzer.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/hotspot/share/ci/bcEscapeAnalyzer.cpp b/src/hotspot/share/ci/bcEscapeAnalyzer.cpp index 515c48711a1..85b5696dac0 100644 --- a/src/hotspot/share/ci/bcEscapeAnalyzer.cpp +++ b/src/hotspot/share/ci/bcEscapeAnalyzer.cpp @@ -1219,8 +1219,6 @@ vmIntrinsics::ID BCEscapeAnalyzer::known_intrinsic() { } bool BCEscapeAnalyzer::compute_escape_for_intrinsic(vmIntrinsics::ID iid) { - ArgumentMap arg; - arg.clear(); switch (iid) { case vmIntrinsics::_getClass: _return_local = false;