From b38a2d753d9d502491b1eff4147607cc48a8f91e Mon Sep 17 00:00:00 2001 From: sewardj Date: Tue, 9 Nov 1999 10:05:07 +0000 Subject: [PATCH] [project @ 1999-11-09 10:05:07 by sewardj] mulIntCzh (i386_TARGET_ARCH): xor --> xorl --- ghc/includes/PrimOps.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/includes/PrimOps.h b/ghc/includes/PrimOps.h index 0991482..45cea3f 100644 --- a/ghc/includes/PrimOps.h +++ b/ghc/includes/PrimOps.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: PrimOps.h,v 1.38 1999/11/02 15:05:51 simonmar Exp $ + * $Id: PrimOps.h,v 1.39 1999/11/09 10:05:07 sewardj Exp $ * * (c) The GHC Team, 1998-1999 * @@ -127,7 +127,7 @@ I_ stg_div (I_ a, I_ b); #define mulIntCzh(r,c,a,b) \ { \ - __asm__("xor %1,%1\n\t \ + __asm__("xorl %1,%1\n\t \ imull %2,%3\n\t \ jno 1f\n\t \ movl $1,%1\n\t \ -- 1.7.10.4