jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit e8bd027d70d448d8fc5dd90d1a94b4fa6cb937b2
Author:     Stephan Bergmann <sberg...@redhat.com>
AuthorDate: Wed May 13 14:14:18 2020 +0200
Commit:     Stephan Bergmann <sberg...@redhat.com>
CommitDate: Wed May 13 16:53:12 2020 +0200

    The -Wclobbered hack appears to be needed for all versions of GCC
    
    What apparently triggers it here is a combination of
    
      --enable-assert-always-abort
      --enable-optimized
      --enable-werror
    
    See <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95103> "Unexpected 
-Wclobbered
    in bits/vector.tcc with -O2" for a stripped-down reproducer.
    
    Change-Id: Ic2cff0e402290cd9fd67790168dc1183799e3f14
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94121
    Tested-by: Jenkins
    Reviewed-by: Stephan Bergmann <sberg...@redhat.com>

diff --git a/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx 
b/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx
index c754dbe7c9cb..cec0ce97ff6a 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/sunjavaplugin.cxx
@@ -818,12 +818,12 @@ javaPluginError jfw_plugin_startJavaVirtualMachine(
 #endif
 
     return errorcode;
-#if defined __GNUC__ && (__GNUC__ == 7 || __GNUC__ == 10) && !defined __clang__
+#if defined __GNUC__ && !defined __clang__
 #pragma GCC diagnostic push
 #pragma GCC diagnostic ignored "-Wclobbered"
 #endif
 }
-#if defined __GNUC__ && (__GNUC__ == 7 || __GNUC__ == 10) && !defined __clang__
+#if defined __GNUC__ && !defined __clang__
 #pragma GCC diagnostic pop
 #endif
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to