diff options
author | Claudiu Zissulescu <claziss@gmail.com> | 2020-01-13 11:16:47 +0200 |
---|---|---|
committer | Claudiu Zissulescu <claziss@gmail.com> | 2020-01-13 11:16:47 +0200 |
commit | 5e4f7e0518ee149838e258331ddb339c578501f6 (patch) | |
tree | ef60a1f92383167a492c384fc96bef90936c1e39 /opcodes/arc-opc.c | |
parent | 39fe16e0780ac85a8907e9ad9a38b88066674b03 (diff) | |
download | gdb-5e4f7e0518ee149838e258331ddb339c578501f6.zip gdb-5e4f7e0518ee149838e258331ddb339c578501f6.tar.gz gdb-5e4f7e0518ee149838e258331ddb339c578501f6.tar.bz2 |
[ARC][committed] Code cleanup and improvements.
Code clean up and improvements when changing the cpu from command
line. Also, remove unused/old emulations.
gas/
xxxx-xx-xx Claudiu Zissulescu <claziss@synopsys.com>
* config/tc-arc.c (arc_select_cpu): Re-init the bfd if we change
the CPU.
* config/tc-arc.h: Add header if/defs.
* testsuite/gas/arc/pseudos.d: Improve matching pattern.
ls/
xxxx-xx-xx Claudiu Zissulescu <claziss@synopsys.com>
* Makefile.am: Remove earcelf_prof.c and earclinux_prof.c
emulations.
* Makefile.in: Regenerate.
* configure.tgt: Likewise.
* emulparams/arcelf_prof.sh: Remove file.
* emulparams/arclinux_prof.sh: Likewise.
opcodes/
xxxx-xx-xx Claudiu Zissulescu <claziss@synopsys.com>
* arc-opc.c (C_NE): Make it required.
Diffstat (limited to 'opcodes/arc-opc.c')
-rw-r--r-- | opcodes/arc-opc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/arc-opc.c b/opcodes/arc-opc.c index b90e5da..675738a 100644 --- a/opcodes/arc-opc.c +++ b/opcodes/arc-opc.c @@ -1691,7 +1691,7 @@ const struct arc_flag_class arc_flag_classes[] = { F_CLASS_OPTIONAL, { F_ASFAKE, F_NULL}}, #define C_NE (C_AS + 1) - { F_CLASS_OPTIONAL, { F_NE, F_NULL}}, + { F_CLASS_REQUIRED, { F_NE, F_NULL}}, /* ARC NPS400 Support: See comment near head of file. */ #define C_NPS_CL (C_NE + 1) |