diff options
author | Martin Hunt <hunt@redhat.com> | 1996-12-18 23:38:41 +0000 |
---|---|---|
committer | Martin Hunt <hunt@redhat.com> | 1996-12-18 23:38:41 +0000 |
commit | 59808ea7c8d50424d76bb5d11993231fc1e5ed41 (patch) | |
tree | 851031868407af3f33673bc884f9eba09732552e /gas | |
parent | 575453fb7d223ef2777fd7dc6f31124b18a6b11a (diff) | |
download | gdb-59808ea7c8d50424d76bb5d11993231fc1e5ed41.zip gdb-59808ea7c8d50424d76bb5d11993231fc1e5ed41.tar.gz gdb-59808ea7c8d50424d76bb5d11993231fc1e5ed41.tar.bz2 |
Wed Dec 18 15:27:40 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
* tc-d10v.c (md_assemble): Fix bug which caused
second instruction in a line to be case sensitize. PR11312
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/tc-d10v.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gas/config/tc-d10v.c b/gas/config/tc-d10v.c index fc143be..04f50cd 100644 --- a/gas/config/tc-d10v.c +++ b/gas/config/tc-d10v.c @@ -713,11 +713,6 @@ write_2_short (opcode1, insn1, opcode2, insn2, exec_type, fx) if (opcode1->exec_type & SEQ || opcode2->exec_type & SEQ) as_fatal ("One of these instructions may not be executed in parallel."); - if ( !parallel_ok (opcode1, insn1, opcode2, insn2, exec_type) - && (opcode1->exec_type & PARONLY) == 0 - && (opcode2->exec_type & PARONLY) == 0) - as_fatal ("Two instructions may not be executed in parallel with each other."); - if (opcode1->unit == IU) { if (opcode2->unit == IU) @@ -917,6 +912,9 @@ md_assemble (str) static int etype=0; /* saved extype. used for multiline instructions */ char *str2; + for (str2 = str; *str2; str2++) + *str2 = tolower(*str2); + if (etype == 0) { /* look for the special multiple instruction separators */ |