configure.ac (libffi_cv_as_ascii_pseudo_op): Use double backslashes.

* configure.ac (libffi_cv_as_ascii_pseudo_op): Use double
	backslashes.
	(libffi_cv_as_string_pseudo_op): Likewise.
	* configure: Regenerate.

From-SVN: r167504
This commit is contained in:
Rainer Orth 2010-12-06 16:20:18 +00:00 committed by Rainer Orth
parent 00420c92cc
commit e34625fbdf
3 changed files with 11 additions and 4 deletions

View 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>
* testsuite/libffi.call/many2.c: Don't use uint8_t.

4
libffi/configure vendored
View File

@ -13301,7 +13301,7 @@ _ACEOF
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
asm (".ascii \"string\"");
asm (".ascii \\"string\\"");
int
main ()
{
@ -13366,7 +13366,7 @@ _ACEOF
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
asm (".string \"string\"");
asm (".string \\"string\\"");
int
main ()
{

View File

@ -258,7 +258,7 @@ if test x$TARGET = xX86 || test x$TARGET = xX86_64; then
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])
])
@ -271,7 +271,7 @@ if test x$TARGET = xX86 || test x$TARGET = xX86_64; then
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])
])