summaryrefslogtreecommitdiffstats
path: root/runtime/stack-ia64.c
diff options
context:
space:
mode:
authorhiramatu <hiramatu>2008-02-06 22:07:42 +0000
committerhiramatu <hiramatu>2008-02-06 22:07:42 +0000
commit47683be64546814f9bf7f48e62c916d7901e336e (patch)
tree1c4068f2f32134b00c1d202cca45532344506d43 /runtime/stack-ia64.c
parent983aeb407de6b516a794d750d329b3780149ed4f (diff)
downloadsystemtap-steved-47683be64546814f9bf7f48e62c916d7901e336e.tar.gz
systemtap-steved-47683be64546814f9bf7f48e62c916d7901e336e.tar.xz
systemtap-steved-47683be64546814f9bf7f48e62c916d7901e336e.zip
2008-02-06 Masami Hiramatsu <mhiramat@redhat.com>
* stack-ia64.c (__stp_show_stack_sym): Skip printing symbol if (ip == REG_IP(regs)). 2008-02-06 Masami Hiramatsu <mhiramat@redhat.com> * systemtap.context/backtrace.tcl: Fixed regular expressions and Added new expression for return probe on ia64. * systemtap.context/backtrace.stp(print_all_trace_info): Added trace point output before calling print_stack().
Diffstat (limited to 'runtime/stack-ia64.c')
-rw-r--r--runtime/stack-ia64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/stack-ia64.c b/runtime/stack-ia64.c
index cab25a0b..ca9d25a6 100644
--- a/runtime/stack-ia64.c
+++ b/runtime/stack-ia64.c
@@ -23,8 +23,8 @@ static void __stp_show_stack_sym(struct unw_frame_info *info, void *arg)
if (skip){
if (ip == REG_IP(regs))
skip = 0;
- else continue;
- }
+ continue;
+ }
_stp_print_char(' ');
_stp_symbol_print(ip);
_stp_print_char('\n');