diff options
| author | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-31 22:19:46 +0000 |
|---|---|---|
| committer | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-31 22:19:46 +0000 |
| commit | a9b6c705bc93669ce409c664a23c59374e3b9877 (patch) | |
| tree | fea25799c9a2babcd913077097bdc4debdafa157 | |
| parent | d2efe02c3f96ce3e0a7fe3516c4158f33183cf94 (diff) | |
| download | ppe42-gcc-a9b6c705bc93669ce409c664a23c59374e3b9877.tar.gz ppe42-gcc-a9b6c705bc93669ce409c664a23c59374e3b9877.zip | |
Fix accidental merge botch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44523 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/config/rs6000/rs6000.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index d7588300c88..e78bef5ddca 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -1294,8 +1294,8 @@ typedef struct rs6000_stack { /* 1 if N is a possible register number for function argument passing. On RS/6000, these are r3-r10 and fp1-fp13. */ #define FUNCTION_ARG_REGNO_P(N) \ - ((((N) - GP_ARG_MIN_REG) < (GP_ARG_NUM_REG)) \ - || (((N) - FP_ARG_MIN_REG) < (FP_ARG_NUM_REG))) + ((unsigned)(((N) - GP_ARG_MIN_REG) < (unsigned)(GP_ARG_NUM_REG)) \ + || ((unsigned)((N) - FP_ARG_MIN_REG) < (unsigned)(FP_ARG_NUM_REG))) /* A C structure for machine-specific, per-function data. |

