diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tapsets.cxx | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2008-09-02 Wenji Huang <wenji.huang@oracle.com> + + * tapsets.cxx (query_func_info): Disable prologue searching in + no-dwarf testing. + 2008-09-01 Stan Cox <scox@redhat.com> * elaborate.cxx (add_global_var_display): Also handle statistics. diff --git a/tapsets.cxx b/tapsets.cxx index aa6a611d..c23ee8aa 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -3447,7 +3447,8 @@ query_func_info (Dwarf_Addr entrypc, else { if (q->sess.prologue_searching - && !q->has_statement_str && !q->has_statement_num) // PR 2608 + && !q->has_statement_str && !q->has_statement_num + && !q->sess.ignore_vmlinux && !q->sess.ignore_dwarf) // PR 2608 { if (fi.prologue_end == 0) throw semantic_error("could not find prologue-end " |