projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cd05cc5
)
Fix thinko in previous change.
author
Fred Fish
<fnf@specifix.com>
Tue, 13 May 1997 19:00:57 +0000
(19:00 +0000)
committer
Fred Fish
<fnf@specifix.com>
Tue, 13 May 1997 19:00:57 +0000
(19:00 +0000)
gas/config/tc-tic80.c
patch
|
blob
|
history
diff --git
a/gas/config/tc-tic80.c
b/gas/config/tc-tic80.c
index 6c1f490c2a255760d9449f5f2315d9ea06a97bd7..f5b4e7992a68f63b0b96e03d776a51a8e7112652 100644
(file)
--- a/
gas/config/tc-tic80.c
+++ b/
gas/config/tc-tic80.c
@@
-925,7
+925,7
@@
md_apply_fix (fixP, val)
md_number_to_chars (dest, (valueT) val, 4);
break;
case R_MPPCR:
- overflow = (val <
0) ? !(val & 0x8000) : (val & 0x8000);
+ overflow = (val <
-65536) || (val > 65532);
if (overflow)
{
as_bad_where (fixP -> fx_file, fixP -> fx_line, "PC relative target out of range");