diff options
author | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-05-03 13:18:01 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-05-03 13:18:01 +0000 |
commit | 8ca47902051d795d565c85d2cc8cbb123d9c0cba (patch) | |
tree | 2fe41106b317105987b24396a50a384e7fdc2160 /gcc | |
parent | 58690ba848b1de49e4d04c8b9a70273d321c8131 (diff) | |
download | gcc-8ca47902051d795d565c85d2cc8cbb123d9c0cba.zip gcc-8ca47902051d795d565c85d2cc8cbb123d9c0cba.tar.gz gcc-8ca47902051d795d565c85d2cc8cbb123d9c0cba.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/mips/mips.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index d28e26a..75ee865 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 |