Fixed case where wrong variable was used.

This commit is contained in:
Joel Sherrill
1998-04-30 16:48:40 +00:00
parent 3d4e5906dd
commit d74daf9d45

View File

@@ -190,7 +190,7 @@ static inline unsigned int i386_swap_U32(
"rorl $16,%0;"
"rorw $8,%%ax" : "=a" (lout) : "0" (value) );
#else
__asm__ volatile( "bswap %0" : "=r" (lout) : "0" (lin));
__asm__ volatile( "bswap %0" : "=r" (lout) : "0" (value));
#endif
return( lout );
}