at the end of the names "__base_ctor" and "__base_dtor"; so ignore
whitespace when looking for these functions.
+
+ * stabsread.c (read_member_functions): GCC may emit an extra space
+ at the end of the names "__base_ctor" and "__base_dtor"; so ignore
+ whitespace when looking for these functions.
+
Change the default value for "set print frame-arguments" to scalars.
/* Skip GCC 3.X member functions which are duplicates of the callable
constructor/destructor. */
- if (strcmp (main_fn_name, "__base_ctor") == 0
- || strcmp (main_fn_name, "__base_dtor") == 0
+ if (strcmp_iw (main_fn_name, "__base_ctor ") == 0
+ || strcmp_iw (main_fn_name, "__base_dtor ") == 0
|| strcmp (main_fn_name, "__deleting_dtor") == 0)
{
xfree (main_fn_name);