From 4ff1e447a8e7a3e2b0ef59bce4acfa96a6b92323 Mon Sep 17 00:00:00 2001 From: Jim Keniston Date: Wed, 19 Nov 2008 10:54:23 -0800 Subject: Add [u_]register() and *_arg() support for s390x. --- testsuite/systemtap.context/num_args.stp | 1 + 1 file changed, 1 insertion(+) (limited to 'testsuite/systemtap.context/num_args.stp') diff --git a/testsuite/systemtap.context/num_args.stp b/testsuite/systemtap.context/num_args.stp index 9f15bb01..5cc01d52 100644 --- a/testsuite/systemtap.context/num_args.stp +++ b/testsuite/systemtap.context/num_args.stp @@ -2,6 +2,7 @@ %( arch == "i686" %? global ir = "eax", lr = "eax" %) %( arch == "x86_64" %? global ir = "eax", lr = "rax" %) %( arch == "ppc64" %? global ir = "r3", lr = "r3" %) +%( arch == "s390x" %? global ir = "r2", lr = "r2" %) probe module("systemtap_test_module2").function("yyy_int") { printf("yyy_int %d %d %d\n", int_arg(1), int_arg(2), int_arg(3)) -- cgit