diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2010-12-06 16:17:45 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2010-12-06 16:17:45 +0000 |
commit | b62305b0196a917aae36307c2e60eee6fcfbeeb7 (patch) | |
tree | 9e740c86abfdb0167f3d3e030f97e99f296d35d4 /libffi/configure | |
parent | 3ff4c5d9a3f08689f4ced275c8c2e5fc254ae7ce (diff) | |
download | gcc-b62305b0196a917aae36307c2e60eee6fcfbeeb7.zip gcc-b62305b0196a917aae36307c2e60eee6fcfbeeb7.tar.gz gcc-b62305b0196a917aae36307c2e60eee6fcfbeeb7.tar.bz2 |
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: r167502
Diffstat (limited to 'libffi/configure')
-rwxr-xr-x | libffi/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libffi/configure b/libffi/configure index 05e58b0..0db3728 100755 --- a/libffi/configure +++ b/libffi/configure @@ -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 () { |