diff options
author | Jim Keniston <jkenisto@us.ibm.com> | 2008-11-19 10:54:23 -0800 |
---|---|---|
committer | Jim Keniston <jkenisto@us.ibm.com> | 2008-11-19 10:54:23 -0800 |
commit | 4ff1e447a8e7a3e2b0ef59bce4acfa96a6b92323 (patch) | |
tree | 7d69087f666e56dcc5083471da9d6b416818aecb /testsuite | |
parent | 8590d03dfe106ec860fd1cdbe28d394d61b6a791 (diff) | |
download | systemtap-steved-4ff1e447a8e7a3e2b0ef59bce4acfa96a6b92323.tar.gz systemtap-steved-4ff1e447a8e7a3e2b0ef59bce4acfa96a6b92323.tar.xz systemtap-steved-4ff1e447a8e7a3e2b0ef59bce4acfa96a6b92323.zip |
Add [u_]register() and *_arg() support for s390x.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | testsuite/systemtap.context/num_args.stp | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog index f0e72dbd..96095b26 100644 --- a/testsuite/ChangeLog +++ b/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2008-11-19 Jim Keniston <jkenisto@us.ibm.com> + + * systemtap.context/num_args.stp: Added s390x case. + 2008-11-18 Frank Ch. Eigler <fche@elastic.org> PR6925. 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)) |