diff options
author | Fred Fish <fnf@specifix.com> | 1997-07-16 05:19:20 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1997-07-16 05:19:20 +0000 |
commit | e53430c439ec96386f803bfaab97476fb30fc34b (patch) | |
tree | e46893e257cfa164a1a6513b8fff3b96b273773e /gas/config | |
parent | e69e959ad34a2d12e9cd1a03dbe751eac8f435a0 (diff) | |
download | gdb-e53430c439ec96386f803bfaab97476fb30fc34b.zip gdb-e53430c439ec96386f803bfaab97476fb30fc34b.tar.gz gdb-e53430c439ec96386f803bfaab97476fb30fc34b.tar.bz2 |
* config/tc-tic80.c (build_insn): Initialize extended word to zero
when it will be filled in later by relocation information.
PR 12796
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-tic80.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gas/config/tc-tic80.c b/gas/config/tc-tic80.c index d173bad..38725df 100644 --- a/gas/config/tc-tic80.c +++ b/gas/config/tc-tic80.c @@ -639,6 +639,7 @@ build_insn (opcode, opers) else if (bits == 32) /* was (flags & TIC80_OPERAND_BASEREL) */ { extended++; + insn[1] = 0; fix_new_exp (frag_now, (f + 4) - (frag_now -> fr_literal), 4, |