summaryrefslogtreecommitdiffstats
path: root/tapset
diff options
context:
space:
mode:
Diffstat (limited to 'tapset')
-rw-r--r--tapset/ChangeLog5
-rw-r--r--tapset/i686/registers.stp4
-rw-r--r--tapset/x86_64/registers.stp4
3 files changed, 5 insertions, 8 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog
index 4560494e..71f0edd1 100644
--- a/tapset/ChangeLog
+++ b/tapset/ChangeLog
@@ -1,3 +1,8 @@
+2008-07-14 David Smith <dsmith@redhat.com>
+
+ * i686/registers.stp: Removed syscall_nr function.
+ * x86_64/registers.stp: Ditto.
+
2008-07-10 Josh Stone <joshua.i.stone@intel.com>
* vfs.stp (__address_inode): Correct access to the mapping field.
diff --git a/tapset/i686/registers.stp b/tapset/i686/registers.stp
index c4c84814..b9eaba5b 100644
--- a/tapset/i686/registers.stp
+++ b/tapset/i686/registers.stp
@@ -206,7 +206,3 @@ function regparm(n:long) %{
} else
CONTEXT->regparm = _STP_REGPARM | (int) THIS->n;
%}
-
-function syscall_nr:long() {
- return register("orig_ax")
-}
diff --git a/tapset/x86_64/registers.stp b/tapset/x86_64/registers.stp
index 99c39e18..dd5eefb0 100644
--- a/tapset/x86_64/registers.stp
+++ b/tapset/x86_64/registers.stp
@@ -245,7 +245,3 @@ function regparm(n:long) %{
} else
CONTEXT->regparm = _STP_REGPARM | (int) THIS->n;
%}
-
-function syscall_nr:long() {
- return _stp_register("orig_ax", 1)
-}