gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gdb / d-namespace.c
index de27ab779a019a41d556d1d570e79855edfe58fa..f3053d6a734c4c938486d9cb3e489e3f0704d050 100644 (file)
@@ -131,7 +131,7 @@ d_lookup_symbol (const struct language_defn *langdef,
            return {};
 
          type = check_typedef (TYPE_TARGET_TYPE (SYMBOL_TYPE (lang_this.symbol)));
-         classname = TYPE_NAME (type);
+         classname = type->name ();
          nested = name;
        }
       else
@@ -308,7 +308,7 @@ d_lookup_nested_symbol (struct type *parent_type,
 
   parent_type = check_typedef (parent_type);
 
-  switch (TYPE_CODE (parent_type))
+  switch (parent_type->code ())
     {
     case TYPE_CODE_STRUCT:
     case TYPE_CODE_UNION:
This page took 0.024054 seconds and 4 git commands to generate.