[PATCH 1/3] configure.ac: Use __asm__ keyword instead of asm

Yann Droneaud yann at droneaud.fr
Mon Oct 26 09:33:13 CDT 2009


All other sources files use __asm__ keyword.
---
 configure.ac |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/configure.ac b/configure.ac
index 68f0f27..b4ee629 100644
--- a/configure.ac
+++ b/configure.ac
@@ -657,7 +657,7 @@ case $host_os in
     if test "x$enable_win16" = "xyes"
     then
         AC_MSG_CHECKING([whether 16-bit code can be built correctly])
-        AC_RUN_IFELSE(AC_LANG_PROGRAM([[asm(".text\n"
+        AC_RUN_IFELSE(AC_LANG_PROGRAM([[__asm__(".text\n"
                                             "bad:\tnop;nop\n"
                                             "good:\tnop;nop\n\t"
                                             ".globl _testfunc\n"
@@ -1590,7 +1590,7 @@ case "$ac_cv_asm_func_def" in
 esac
 
 AC_CACHE_CHECK([whether asm() works outside of functions], ac_cv_c_asm_outside_funcs,
-    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[asm(".text\n\t.long 0");]],)],
+    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[__asm__(".text\n\t.long 0");]],)],
                       ac_cv_c_asm_outside_funcs="yes",ac_cv_c_asm_outside_funcs="no"))
 
 AC_CACHE_CHECK([whether .previous is supported in assembly code], ac_cv_c_dot_previous,
@@ -1598,7 +1598,7 @@ AC_CACHE_CHECK([whether .previous is supported in assembly code], ac_cv_c_dot_pr
                       ac_cv_c_dot_previous="yes",ac_cv_c_dot_previous="no"))
 
 AC_CACHE_CHECK([whether CFI directives are supported in assembly code], ac_cv_c_cfi_support,
-    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[asm(".text\nac_test:\t.cfi_startproc\n\t.long 0\n\t.cfi_endproc");]])],
+    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[__asm__(".text\nac_test:\t.cfi_startproc\n\t.long 0\n\t.cfi_endproc");]])],
                       ac_cv_c_cfi_support="yes",ac_cv_c_cfi_support="no"))
 
 asm_func_header=".globl $asm_name_prefix\" #name suffix \"\\n\\t$asm_func_header\\n$asm_name_prefix\" #name suffix \":\\n\\t"
@@ -1621,9 +1621,9 @@ asm_func_code="$asm_func_header\" code \"$asm_func_trailer"
 AH_TEMPLATE(__ASM_DEFINE_FUNC,[Define to a macro to define an assembly function])
 if test "$ac_cv_c_asm_outside_funcs" = "yes"
 then
-    AC_DEFINE_UNQUOTED([__ASM_DEFINE_FUNC(name,suffix,code)],[asm(".text\n\t.align 4\n\t$asm_func_code");])
+    AC_DEFINE_UNQUOTED([__ASM_DEFINE_FUNC(name,suffix,code)],[__asm__(".text\n\t.align 4\n\t$asm_func_code");])
 else
-    AC_DEFINE_UNQUOTED([__ASM_DEFINE_FUNC(name,suffix,code)],[void __asm_dummy_##name(void) { asm(".text\n\t.align 4\n\t$asm_func_code"); }])
+    AC_DEFINE_UNQUOTED([__ASM_DEFINE_FUNC(name,suffix,code)],[void __asm_dummy_##name(void) { __asm__(".text\n\t.align 4\n\t$asm_func_code"); }])
 fi
 AC_DEFINE([__ASM_GLOBAL_FUNC(name,code)],[__ASM_DEFINE_FUNC(name,"",code)],
           [Define to a macro to generate an assembly function with C calling convention])
-- 
1.6.2.5




More information about the wine-patches mailing list