From d67b2d01074bf5a42406c86a68f96b6fc98ddb94 Mon Sep 17 00:00:00 2001 From: Robbin Ehn Date: Mon, 14 Oct 2024 15:29:45 +0200 Subject: [PATCH] Fixed no explicit use of default t1 --- src/hotspot/cpu/riscv/templateTable_riscv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hotspot/cpu/riscv/templateTable_riscv.cpp b/src/hotspot/cpu/riscv/templateTable_riscv.cpp index 4616cb7bc9ed4..916f1978a8e29 100644 --- a/src/hotspot/cpu/riscv/templateTable_riscv.cpp +++ b/src/hotspot/cpu/riscv/templateTable_riscv.cpp @@ -3672,7 +3672,7 @@ void TemplateTable::checkcast() { // Come here on failure __ push_reg(x13); // object is at TOS - __ j(Interpreter::_throw_ClassCastException_entry, t1); + __ j(Interpreter::_throw_ClassCastException_entry); // Come here on success __ bind(ok_is_subtype);