Move moxie stack out in memory.
[deliverable/binutils-gdb.git] / gdb / valprint.c
index 32f9dedd5b23783da9a3c699927a6a8d8898bb8a..34b9422237131b2f472850e2d3b21b959a006cf2 100644 (file)
@@ -287,6 +287,13 @@ value_check_printable (struct value *val, struct ui_file *stream)
       return 0;
     }
 
+  if (TYPE_CODE (value_type (val)) == TYPE_CODE_INTERNAL_FUNCTION)
+    {
+      fprintf_filtered (stream, _("<internal function %s>"),
+                       value_internal_function_name (val));
+      return 0;
+    }
+
   return 1;
 }
 
This page took 0.022939 seconds and 4 git commands to generate.