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 | |
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
-rw-r--r-- | gas/ChangeLog | 7 | ||||
-rw-r--r-- | gas/config/tc-tic80.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 1e89302..81acdbc 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +start-sanitize-tic80 +Tue Jul 15 16:29:54 1997 Fred Fish <fnf@cygnus.com> + + * config/tc-tic80.c (build_insn): Initialize extended word to zero + when it will be filled in later by relocation information. + +end-sanitize-tic80 Mon Jul 14 23:10:58 1997 Ian Lance Taylor <ian@cygnus.com> * config/tc-mips.c (macro_build): Restore check of fmt argument. 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, |