diff options
author | Josh Stone <joshua.i.stone@intel.com> | 2008-06-18 18:12:38 -0700 |
---|---|---|
committer | Josh Stone <joshua.i.stone@intel.com> | 2008-06-18 18:12:38 -0700 |
commit | 3f33ee3ac885ac639f932ab5cfec03d6f5f125d0 (patch) | |
tree | fb9ce93182235d59ce57f5a2e6c67f14a67e9cf3 /testsuite/systemtap.base/optim_arridx.exp | |
parent | bea72737344238d12c4b4bcd197d7e6606780e45 (diff) | |
download | systemtap-steved-3f33ee3ac885ac639f932ab5cfec03d6f5f125d0.tar.gz systemtap-steved-3f33ee3ac885ac639f932ab5cfec03d6f5f125d0.tar.xz systemtap-steved-3f33ee3ac885ac639f932ab5cfec03d6f5f125d0.zip |
Hack optim_arridx to avoid more optimization than intended
Diffstat (limited to 'testsuite/systemtap.base/optim_arridx.exp')
-rw-r--r-- | testsuite/systemtap.base/optim_arridx.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.base/optim_arridx.exp b/testsuite/systemtap.base/optim_arridx.exp index 0987dec6..f4308db5 100644 --- a/testsuite/systemtap.base/optim_arridx.exp +++ b/testsuite/systemtap.base/optim_arridx.exp @@ -9,7 +9,7 @@ arr3:long [long] fna:long (a:long) return a fnb:long (a:long, b:long) -return (a) + (b) +return ((a) + (b)) + (printf("")) exit:unknown () %{ atomic_set (&session_state, STAP_SESSION_STOPPING); |