diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tapsets.cxx | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2007-05-25 Martin Hunt <hunt@redhat.com> + + Patch from Quentin Barnes. + * tapsets.cxx (query_module): Add support for arm. + 2007-05-21 David Smith <dsmith@redhat.com> PR 4446. diff --git a/tapsets.cxx b/tapsets.cxx index d5590614..504dc5e5 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -2977,6 +2977,7 @@ query_module (Dwfl_Module *mod, case EM_PPC64: expect_machine = "ppc64"; break; case EM_S390: expect_machine = "s390x"; break; case EM_IA_64: expect_machine = "ia64"; break; + case EM_ARM: expect_machine = "armv*"; break; // XXX: fill in some more of these default: expect_machine = "?"; break; } |