summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhunt <hunt>2007-05-25 19:14:53 +0000
committerhunt <hunt>2007-05-25 19:14:53 +0000
commitd99bc65f2bcb24a0649444314e67a0bb97e351cc (patch)
tree1fb1a848d3f1152af7ed56056c05bc6e345e8e46
parent5980a64171df3af58258d93ae3b0729cdc900f2e (diff)
downloadsystemtap-steved-d99bc65f2bcb24a0649444314e67a0bb97e351cc.tar.gz
systemtap-steved-d99bc65f2bcb24a0649444314e67a0bb97e351cc.tar.xz
systemtap-steved-d99bc65f2bcb24a0649444314e67a0bb97e351cc.zip
2007-05-25 Martin Hunt <hunt@redhat.com>
Patch from Quentin Barnes. * tapsets.cxx (query_module): Add support for arm.
-rw-r--r--ChangeLog5
-rw-r--r--tapsets.cxx1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5478e26e..04cd1521 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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;
}