diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-16 22:05:08 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-05-16 22:05:08 +0000 |
commit | 9e46e77e7dafd4a35f9f6139693f80e26515258c (patch) | |
tree | be335a4e748016b364510cf7cb972d260049ba08 /gcc/config/ip2k/ip2k.md | |
parent | a6cdc5f0f81a9b696823a3967c2450b5db7a4fc9 (diff) | |
download | gcc-9e46e77e7dafd4a35f9f6139693f80e26515258c.tar.gz |
* ip2k.c (function_prologue, function_epilogue, print_operand):
Fix format specifier warnings.
* ip2k.md: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66886 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/ip2k/ip2k.md')
-rw-r--r-- | gcc/config/ip2k/ip2k.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/ip2k/ip2k.md b/gcc/config/ip2k/ip2k.md index f29d05acb30..b4f257980aa 100644 --- a/gcc/config/ip2k/ip2k.md +++ b/gcc/config/ip2k/ip2k.md @@ -977,7 +977,7 @@ /* Constant can just be or-ed in. */ { p += sprintf (p, \"mov\\tw,#$%2.2x\;or\\t%%0,w\", - (INTVAL (operands[3]) << pos) & mask & 0xff); + (int) (INTVAL (operands[3]) << pos) & mask & 0xff); return buff; } |