]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
configure.ac (libffi_cv_as_ascii_pseudo_op): Use double backslashes.
authorRainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
Mon, 6 Dec 2010 16:18:57 +0000 (16:18 +0000)
committerRainer Orth <ro@gcc.gnu.org>
Mon, 6 Dec 2010 16:18:57 +0000 (16:18 +0000)
* configure.ac (libffi_cv_as_ascii_pseudo_op): Use double
backslashes.
(libffi_cv_as_string_pseudo_op): Likewise.
* configure: Regenerate.

From-SVN: r167503

libffi/ChangeLog
libffi/configure
libffi/configure.ac

index 9b23251ada31c430d05ee5a0c3fe3842e4550f07..ec9ac685f4e36a4756da87e8e47c31693691a421 100644 (file)
@@ -1,3 +1,10 @@
+2010-12-06  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * configure.ac (libffi_cv_as_ascii_pseudo_op): Use double
+       backslashes.
+       (libffi_cv_as_string_pseudo_op): Likewise.
+       * configure: Regenerate.
+
 2010-10-01  Jakub Jelinek  <jakub@redhat.com>
 
        PR libffi/45677
index a63368ba1c96d02c3f1dcf301eec890e561b2ddc..602d7f16224d51dd38177d2abc4e2bee62785d83 100755 (executable)
@@ -12420,7 +12420,7 @@ else
        # Check if we have .ascii
        cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
-asm (".ascii \"string\"");
+asm (".ascii \\"string\\"");
 int
 main ()
 {
@@ -12455,7 +12455,7 @@ else
        # Check if we have .string
        cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
-asm (".string \"string\"");
+asm (".string \\"string\\"");
 int
 main ()
 {
index d4644a3df3162ce57d073860bb82b4332428715c..de08613b4d79e6d8817ddaf3e3a0672ba0c3ad89 100644 (file)
@@ -279,7 +279,7 @@ if test x$TARGET = xX86 || test x$TARGET = xX86_WIN32 || test x$TARGET = xX86_64
        libffi_cv_as_ascii_pseudo_op, [
        libffi_cv_as_ascii_pseudo_op=unknown
        # Check if we have .ascii
-       AC_TRY_COMPILE([asm (".ascii \"string\"");],,
+       AC_TRY_COMPILE([asm (".ascii \\"string\\"");],,
                       [libffi_cv_as_ascii_pseudo_op=yes],
                       [libffi_cv_as_ascii_pseudo_op=no])
     ])
@@ -292,7 +292,7 @@ if test x$TARGET = xX86 || test x$TARGET = xX86_WIN32 || test x$TARGET = xX86_64
        libffi_cv_as_string_pseudo_op, [
        libffi_cv_as_string_pseudo_op=unknown
        # Check if we have .string
-       AC_TRY_COMPILE([asm (".string \"string\"");],,
+       AC_TRY_COMPILE([asm (".string \\"string\\"");],,
                       [libffi_cv_as_string_pseudo_op=yes],
                       [libffi_cv_as_string_pseudo_op=no])
     ])