From 8ca47902051d795d565c85d2cc8cbb123d9c0cba Mon Sep 17 00:00:00 2001 From: Kaveh Ghazi Date: Mon, 3 May 1999 13:18:01 +0000 Subject: [PATCH] mips.h (Pmode): Revert Oct 14th change which added a cast. 0 * mips.h (Pmode): Revert Oct 14th change which added a cast. From-SVN: r26750 --- gcc/config/mips/mips.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index d28e26a7830a..75ee865cdee6 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -3306,7 +3306,7 @@ while (0) For MIPS we make pointers are the smaller of longs and gp-registers. */ #ifndef Pmode -#define Pmode ((enum machine_mode)((TARGET_LONG64 && TARGET_64BIT) ? DImode : SImode)) +#define Pmode ((TARGET_LONG64 && TARGET_64BIT) ? DImode : SImode) #endif /* A function address in a call instruction -- 2.47.2