diff options
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 248b847..1c70f41 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -12102,22 +12102,6 @@ static std::string ada_exception_catchpoint_cond_string exception, in order to be able to re-set the condition expression when symbols change. */ -/* An instance of this type is used to represent an Ada catchpoint - breakpoint location. */ - -class ada_catchpoint_location : public bp_location -{ -public: - ada_catchpoint_location (breakpoint *owner) - : bp_location (owner, bp_loc_software_breakpoint) - {} - - /* The condition that checks whether the exception that was raised - is the specific exception the user specified on catchpoint - creation. */ - expression_up excep_cond_expr; -}; - /* An instance of this type is used to represent an Ada catchpoint. */ struct ada_catchpoint : public base_breakpoint @@ -12144,6 +12128,22 @@ struct ada_catchpoint : public base_breakpoint enum ada_exception_catchpoint_kind m_kind; }; +/* An instance of this type is used to represent an Ada catchpoint + breakpoint location. */ + +class ada_catchpoint_location : public bp_location +{ +public: + explicit ada_catchpoint_location (ada_catchpoint *owner) + : bp_location (owner, bp_loc_software_breakpoint) + {} + + /* The condition that checks whether the exception that was raised + is the specific exception the user specified on catchpoint + creation. */ + expression_up excep_cond_expr; +}; + /* Parse the exception condition string in the context of each of the catchpoint's locations, and store them for later evaluation. */ |