From 102b398cc59e95cb4f5327b9c8fc9a3c5594acce Mon Sep 17 00:00:00 2001 From: eapen Date: Tue, 29 Nov 2022 09:23:01 +0800 Subject: [PATCH 29/33] I68TO2: fix the length value of ciBlock in ciMethodBlocks.cpp --- hotspot/src/share/vm/ci/ciMethodBlocks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hotspot/src/share/vm/ci/ciMethodBlocks.cpp b/hotspot/src/share/vm/ci/ciMethodBlocks.cpp index 614e75d..3ce828e 100644 --- a/hotspot/src/share/vm/ci/ciMethodBlocks.cpp +++ b/hotspot/src/share/vm/ci/ciMethodBlocks.cpp @@ -372,7 +372,7 @@ static const char *flagnames[] = { void ciBlock::dump() { tty->print(" [%d .. %d), {", _start_bci, _limit_bci); - for (int i = 0; i < 8; i++) { + for (int i = 0; i < 7; i++) { if ((_flags & (1 << i)) != 0) { tty->print(" %s", flagnames[i]); } -- 1.8.3.1