[Python-checkins] r87619 - python/branches/py3k-cdecimal/Modules/cdecimal/bits.h

stefan.krah python-checkins at python.org
Sun Jan 2 13:59:10 CET 2011


Author: stefan.krah
Date: Sun Jan  2 13:59:10 2011
New Revision: 87619

Log:
Use consistent style for inline asm.

Modified:
   python/branches/py3k-cdecimal/Modules/cdecimal/bits.h

Modified: python/branches/py3k-cdecimal/Modules/cdecimal/bits.h
==============================================================================
--- python/branches/py3k-cdecimal/Modules/cdecimal/bits.h	(original)
+++ python/branches/py3k-cdecimal/Modules/cdecimal/bits.h	Sun Jan  2 13:59:10 2011
@@ -134,9 +134,9 @@
 
 	__asm__ (
 #ifdef CONFIG_64
-		"bsfq %1, %0"
+		"bsfq %1, %0\n\t"
 #else
-		"bsf %1, %0"
+		"bsf %1, %0\n\t"
 #endif
 		:"=r" (retval)
 		:"r" (a)


More information about the Python-checkins mailing list