From 29e2c16e5b5aa3afc26f8dcc859e940a23a01aee Mon Sep 17 00:00:00 2001 From: Magnus Ihse Bursie Date: Wed, 23 Oct 2019 09:45:41 +0200 Subject: [PATCH] 8211073: Remove -Wno-extra from Hotspot Reviewed-by: dholmes, erikj, kbarrett --- make/hotspot/lib/CompileJvm.gmk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/make/hotspot/lib/CompileJvm.gmk b/make/hotspot/lib/CompileJvm.gmk index f6e0adfc168..fb701c03bf5 100644 --- a/make/hotspot/lib/CompileJvm.gmk +++ b/make/hotspot/lib/CompileJvm.gmk @@ -78,14 +78,14 @@ CFLAGS_VM_VERSION := \ ################################################################################ # Disabled warnings -DISABLED_WARNINGS_gcc := extra parentheses comment unknown-pragmas address \ +DISABLED_WARNINGS_gcc := parentheses comment unknown-pragmas address \ delete-non-virtual-dtor char-subscripts array-bounds int-in-bool-context \ ignored-qualifiers missing-field-initializers implicit-fallthrough \ empty-body strict-overflow sequence-point maybe-uninitialized \ - misleading-indentation + misleading-indentation cast-function-type ifeq ($(call check-jvm-feature, zero), true) - DISABLED_WARNINGS_gcc += return-type switch + DISABLED_WARNINGS_gcc += return-type switch clobbered endif DISABLED_WARNINGS_clang := tautological-compare \