diff options
author | Nick Clifton <nickc@redhat.com> | 1998-06-06 07:03:45 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1998-06-06 07:03:45 +0000 |
commit | dbf2a52296d271b0c9579f3317b06089fbca5ac8 (patch) | |
tree | 463edf555f942b087cae13404b9c74ce4c78802e | |
parent | 06aa0337a8205b9fa9de2b291ffb86ef0f7b5f7c (diff) | |
download | gdb-dbf2a52296d271b0c9579f3317b06089fbca5ac8.zip gdb-dbf2a52296d271b0c9579f3317b06089fbca5ac8.tar.gz gdb-dbf2a52296d271b0c9579f3317b06089fbca5ac8.tar.bz2 |
Another fix for PR16116
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-d30v.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 35a1387..a024aca 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Sat Jun 6 00:02:41 1998 Nick Clifton <nickc@cygnus.com> + + * config/tc-d30v.c (md_assemble): Set execution type to unknown + after emitting a word of noops. + Fri Jun 5 23:27:04 1998 Alan Modra <alan@spri.levels.unisa.edu.au> * config/tc-i386.c (mode_from_disp_size): Disp16 is mode 2. diff --git a/gas/config/tc-d30v.c b/gas/config/tc-d30v.c index 9a75789..d22c243 100644 --- a/gas/config/tc-d30v.c +++ b/gas/config/tc-d30v.c @@ -1185,6 +1185,7 @@ md_assemble (str) else as_warn (_("word of NOPs added between word multiply and 16-bit multiply")); } + extype = EXEC_UNKNOWN; } } |