]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Bug 463027 - broken check for MPX instruction support in assembler
authorPaul Floyd <pjfloyd@wanadoo.fr>
Fri, 23 Dec 2022 13:49:39 +0000 (14:49 +0100)
committerPaul Floyd <pjfloyd@wanadoo.fr>
Fri, 23 Dec 2022 13:49:39 +0000 (14:49 +0100)
NEWS
configure.ac

diff --git a/NEWS b/NEWS
index d777d9160ce6d6ca4e426f7f1b71517c5b37c2b0..c9376dcca92cc03861017aee3a3785493d42d3e9 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -27,6 +27,7 @@ are not entered into bugzilla tend to get forgotten about or ignored.
 444110  priv/guest_ppc_toIR.c:36198:31: warning: duplicated 'if' condition.
 459476  vgdb: allow address reuse to avoid "address already in use" errorsuse" errors
 462830  WARNING: unhandled amd64-freebsd syscall: 474
+463027  broken check for MPX instruction support in assembler
 
 To see details of a given bug, visit
   https://bugs.kde.org/show_bug.cgi?id=XXXXXX
index 41047dc2c6b54c33ffa07e70fe218d446eb3ed65..5ae93771195ac9488a3e5a6763cf1dff1d521655 100755 (executable)
@@ -3410,9 +3410,9 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[
     asm ("bndmov %bnd0,(%rsp)");
     asm ("bndldx 3(%rbx,%rdx), %bnd2");
     asm ("bnd call foo\n"
-          bnd jmp  end\n"
-          foo: bnd ret\n"
-          end: nop");
+         "bnd jmp  end\n"
+         "foo: bnd ret\n"
+         "end: nop");
   } while (0)
 ]])], [
 ac_have_as_mpx=yes