8386960: BUILD_LIBVERIFY remove special warning settings

Reviewed-by: erikj, clanger
This commit is contained in:
Matthias Baesken 2026-06-23 12:08:06 +00:00
parent 7ca9ae1dfe
commit 16d0f161ef
2 changed files with 1 additions and 3 deletions

View File

@ -35,8 +35,6 @@ ifeq ($(INCLUDE), true)
$(eval $(call SetupJdkLibrary, BUILD_LIBVERIFY, \
NAME := verify, \
OPTIMIZATION := HIGH, \
DISABLED_WARNINGS_gcc_check_code.c := unused-variable, \
DISABLED_WARNINGS_clang_check_code.c := unused-variable, \
EXTRA_HEADER_DIRS := libjava, \
JDK_LIBS := libjvm, \
))

View File

@ -3705,7 +3705,7 @@ CCerror (context_type *context, char *format, ...)
static void
CCout_of_memory(context_type *context)
{
int n = print_CCerror_info(context);
print_CCerror_info(context);
context->err_code = CC_OutOfMemory;
longjmp(context->jump_buffer, 1);
}