]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
configure: Remove obsoleted -malign-{jumps, loops, functions}
authorFangrui Song via Grub-devel <grub-devel@gnu.org>
Thu, 26 Aug 2021 16:02:31 +0000 (09:02 -0700)
committerDaniel Kiper <daniel.kiper@oracle.com>
Mon, 6 Sep 2021 14:08:02 +0000 (16:08 +0200)
The GCC warns "cc1: warning: ‘-malign-loops’ is obsolete, use ‘-falign-loops’".
The Clang silently ignores -malign-{jumps,loops,functions}.

The preferred -falign-* forms have been supported since GCC 3.2. So, just
remove -malign-{jumps,loops,functions}.

Signed-off-by: Fangrui Song <maskray@google.com>
Acked-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
configure.ac

index bee28dbebf10f18de07e59e60f7673f992bcd36b..9a12151bdf62afa303451efa7efbba3d21ead647 100644 (file)
@@ -805,17 +805,8 @@ if test "x$target_cpu" = xi386; then
        [grub_cv_cc_falign_loop=no])
   ])
 
-  AC_CACHE_CHECK([whether -malign-loops works], [grub_cv_cc_malign_loop], [
-    CFLAGS="$TARGET_CFLAGS -malign-loops=1 -Werror"
-    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
-        [grub_cv_cc_malign_loop=yes],
-       [grub_cv_cc_malign_loop=no])
-  ])
-
   if test "x$grub_cv_cc_falign_loop" = xyes; then
     TARGET_CFLAGS="$TARGET_CFLAGS -falign-jumps=1 -falign-loops=1 -falign-functions=1"
-  elif test "x$grub_cv_cc_malign_loop" = xyes; then
-    TARGET_CFLAGS="$TARGET_CFLAGS -malign-jumps=1 -malign-loops=1 -malign-functions=1"
   fi
 fi