diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-18 10:33:36 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-18 10:33:36 +0000 |
commit | 0f15bf2ebe4b001a06ab7869f0c7bcbb74b5469e (patch) | |
tree | 7393ac7f037f04ea997b60a08f0eba639c9798d6 /gcc/config/iq2000/iq2000.h | |
parent | 80135bd9bbf06da9d0214ece3c59c301d3af3a2b (diff) | |
download | gcc-0f15bf2ebe4b001a06ab7869f0c7bcbb74b5469e.tar.gz |
2010-11-18 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 166897
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@166899 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/iq2000/iq2000.h')
-rw-r--r-- | gcc/config/iq2000/iq2000.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/gcc/config/iq2000/iq2000.h b/gcc/config/iq2000/iq2000.h index 716be5b7a67..68b700d2d5a 100644 --- a/gcc/config/iq2000/iq2000.h +++ b/gcc/config/iq2000/iq2000.h @@ -390,15 +390,6 @@ typedef struct iq2000_args && (GET_MODE_CLASS (MODE) == MODE_INT))) \ ? downward : upward)) -#define FUNCTION_ARG_BOUNDARY(MODE, TYPE) \ - (((TYPE) != 0) \ - ? ((TYPE_ALIGN(TYPE) <= PARM_BOUNDARY) \ - ? PARM_BOUNDARY \ - : TYPE_ALIGN(TYPE)) \ - : ((GET_MODE_ALIGNMENT(MODE) <= PARM_BOUNDARY) \ - ? PARM_BOUNDARY \ - : GET_MODE_ALIGNMENT(MODE))) - #define FUNCTION_ARG_REGNO_P(N) \ (((N) >= GP_ARG_FIRST && (N) <= GP_ARG_LAST)) @@ -509,7 +500,7 @@ typedef struct iq2000_args "%8", "%9", "%10", "%11", "%12", "%13", "%14", "%15", \ "%16", "%17", "%18", "%19", "%20", "%21", "%22", "%23", \ "%24", "%25", "%26", "%27", "%28", "%29", "%30", "%31", "%rap" \ -}; +} #define ADDITIONAL_REGISTER_NAMES \ { \ @@ -832,7 +823,7 @@ enum processor_type (((regno) >= FIRST_PSEUDO_REGISTER) || (BASE_REG_P ((regno), (mode)))) #define REGNO_MODE_OK_FOR_BASE_P(regno, mode) \ - GP_REG_OR_PSEUDO_STRICT_P ((regno), (mode)) + GP_REG_OR_PSEUDO_STRICT_P ((int) (regno), (mode)) /* The macros REG_OK_FOR..._P assume that the arg is a REG rtx and check its validity for a certain class. |