changeset 19522:0aba40fe27e1

Fix .align is a power of two check. hint by Philippe, phildev at mac com
author diego
date Thu, 24 Aug 2006 22:39:26 +0000
parents 0be2d3583f4f
children 8220d48531ae
files configure
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Thu Aug 24 22:10:43 2006 +0000
+++ b/configure	Thu Aug 24 22:39:26 2006 +0000
@@ -2235,7 +2235,7 @@
 if test "$_asmalign_pot" = auto ; then
 _asmalign_pot=no
 cat > $TMPC << EOF
-asm (".align 3");
+main() { asm (".align 3"); }
 EOF
 cc_check && _asmalign_pot=yes
 fi