[gdb] Allow frv::fr300 in selftests
authorTom de Vries <tdevries@suse.de>
Tue, 7 Jun 2022 07:59:54 +0000 (09:59 +0200)
committerTom de Vries <tdevries@suse.de>
Tue, 7 Jun 2022 07:59:54 +0000 (09:59 +0200)
In skip_arch in gdb/selftest-arch.c we skip architecture fr300 because of
PR20946, but the PR has been fixed by commit 0ae60c3ef45 ("Prevent an abort in
the FRV disassembler if the target bfd name is unknown.") in Januari 2017.

Remove the skipping of frv::fr300.

Tested on x86_64-linux.

gdb/selftest-arch.c

index 33d7875c120626e8bfdd3ee6a190ef9753361548..9e99098783e45a583f74e8c692983e307702dfda 100644 (file)
@@ -28,12 +28,6 @@ namespace selftests {
 
 static bool skip_arch (const char *arch)
 {
-  if (strcmp ("fr300", arch) == 0)
-    {
-      /* PR 20946 */
-      return true;
-    }
-
   if (strcmp ("powerpc:EC603e", arch) == 0
       || strcmp ("powerpc:e500mc", arch) == 0
       || strcmp ("powerpc:e500mc64", arch) == 0