diff options
Diffstat (limited to 'gas/config/tc-h8300.c')
-rw-r--r-- | gas/config/tc-h8300.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gas/config/tc-h8300.c b/gas/config/tc-h8300.c index eaf2500..d9721f7 100644 --- a/gas/config/tc-h8300.c +++ b/gas/config/tc-h8300.c @@ -55,6 +55,10 @@ h8300hmode () { Hmode = 1; Smode = 0; +#ifdef BFD_ASSEMBLER + if (!bfd_set_arch_mach (stdoutput, bfd_arch_h8300, bfd_mach_h8300h)) + as_warn (_("could not set architecture and machine")); +#endif } void @@ -62,6 +66,10 @@ h8300smode () { Smode = 1; Hmode = 1; +#ifdef BFD_ASSEMBLER + if (!bfd_set_arch_mach (stdoutput, bfd_arch_h8300, bfd_mach_h8300s)) + as_warn (_("could not set architecture and machine")); +#endif } void @@ -117,6 +125,11 @@ md_begin () char prev_buffer[100]; int idx = 0; +#ifdef BFD_ASSEMBLER + if (!bfd_set_arch_mach (stdoutput, bfd_arch_h8300, bfd_mach_h8300)) + as_warn (_("could not set architecture and machine")); +#endif + opcode_hash_control = hash_new (); prev_buffer[0] = 0; |