From d74daf9d451b0f6e4db31308bf42bd5e25ae5f42 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 30 Apr 1998 16:48:40 +0000 Subject: Fixed case where wrong variable was used. --- c/src/exec/score/cpu/i386/i386.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'c/src/exec') diff --git a/c/src/exec/score/cpu/i386/i386.h b/c/src/exec/score/cpu/i386/i386.h index 692c1538b7..5495023a50 100644 --- a/c/src/exec/score/cpu/i386/i386.h +++ b/c/src/exec/score/cpu/i386/i386.h @@ -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 ); } -- cgit v1.2.3