]> 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:17:45 +0000 (16:17 +0000)
committerRainer Orth <ro@gcc.gnu.org>
Mon, 6 Dec 2010 16:17:45 +0000 (16:17 +0000)
* configure.ac (libffi_cv_as_ascii_pseudo_op): Use double
backslashes.
(libffi_cv_as_string_pseudo_op): Likewise.
* configure: Regenerate.

From-SVN: r167502

libffi/ChangeLog
libffi/configure
libffi/configure.ac

index 16e463806f9d452777d7f79d0ecf47edaecb6d61..81b6b6e7f80fb1c82383526728b746fee7ca4545 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-12-03  Chung-Lin Tang  <cltang@codesourcery.com>
 
        * src/arm/sysv.S (ffi_closure_SYSV): Add UNWIND to .pad directive.
index 05e58b0cc70b437e62b89b7aec8390b6ca1f33b2..0db3728360a87f46124e6bc1da0658ff61708ae0 100755 (executable)
@@ -12423,7 +12423,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 ()
 {
@@ -12458,7 +12458,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 ac48c8297de400a2f69e91cd7ed2da7aab9346bd..f9bde00bd30cf9e6c86123cb077e9ca22cc1f3a9 100644 (file)
@@ -282,7 +282,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])
     ])
@@ -295,7 +295,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])
     ])