X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fada-lang.c;h=3eaf6496e7b1d4e61f58eb6a4303573d3a944bb5;hb=e9e07ba6db5fb651b153da7bde8a6ee4509172f0;hp=fabb2728d5cbb9442b377d6b7794f745a6e744ba;hpb=cd2effb255e6018687256a2d10072a1e4da0c6c5;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index fabb2728d5..3eaf6496e7 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -10325,7 +10325,7 @@ is_known_support_routine (struct frame_info *frame) /* Check whether the function is a GNAT-generated entity. */ - find_frame_funname (frame, &func_name, &func_lang); + find_frame_funname (frame, &func_name, &func_lang, NULL); if (func_name == NULL) return 1; @@ -10393,7 +10393,7 @@ ada_unhandled_exception_name_addr_from_raise (void) char *func_name; enum language func_lang; - find_frame_funname (fi, &func_name, &func_lang); + find_frame_funname (fi, &func_name, &func_lang, NULL); if (func_name != NULL && strcmp (func_name, exception_info->catch_exception_sym) == 0) break; /* We found the frame we were looking for... */