afa5870f1b
GCC 6 warns: error: result of ‘63 << 26’ requires 33 bits to represent, but ‘int’ only has 32 bits [-Werror=shift-overflow=] on 0x3f << 26. This patch adds 'U' suffix to make integer constant unsigned. * alpha.c (OP_Jxx): Add 'U' suffix to make it unsigned. (OP_BSR): Likewise. (Jxx_FUNC_JMP): Likewise. (Jxx_FUNC_JSR): Likewise. (Jxx_FUNC_RET): Likewise. (Jxx_FUNC_JSR_COROUTINE): Likewise. (alpha_find_call): Replace 0x3f with 0x3fU.
32 lines
830 B
Text
32 lines
830 B
Text
2015-07-24 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
* alpha.c (OP_Jxx): Add 'U' suffix to make it unsigned.
|
||
(OP_BSR): Likewise.
|
||
(Jxx_FUNC_JMP): Likewise.
|
||
(Jxx_FUNC_JSR): Likewise.
|
||
(Jxx_FUNC_RET): Likewise.
|
||
(Jxx_FUNC_JSR_COROUTINE): Likewise.
|
||
(alpha_find_call): Replace 0x3f with 0x3fU.
|
||
|
||
2015-04-29 Nick Clifton <nickc@redhat.com>
|
||
|
||
* po/da.po: Update Danish translation.
|
||
|
||
2015-01-01 Alan Modra <amodra@gmail.com>
|
||
|
||
Update year range in copyright notice of all files.
|
||
|
||
For older changes see ChangeLog-2014
|
||
|
||
Copyright (C) 2015 Free Software Foundation, Inc.
|
||
|
||
Copying and distribution of this file, with or without modification,
|
||
are permitted in any medium without royalty provided the copyright
|
||
notice and this notice are preserved.
|
||
|
||
Local Variables:
|
||
mode: change-log
|
||
left-margin: 8
|
||
fill-column: 74
|
||
version-control: never
|
||
End:
|