Fix comments on `struct frame_info'.
[deliverable/binutils-gdb.git] / gdb / stabsread.c
index 169f1f9acd497bb90bad609f07525f574e36c7c4..87cf76801c313b931eb30a14ba07f4f4039f8f15 100644 (file)
@@ -43,6 +43,7 @@
 #include "complaints.h"
 #include "demangle.h"
 #include "language.h"
+#include "doublest.h"
 
 #include <ctype.h>
 
@@ -2585,7 +2586,7 @@ again:
       if (type_descriptor == 'c' && !os9k_stabs)
        return error_type (pp, objfile);
       type = read_type (pp, objfile);
-      /* FIXME! For now, we ignore const and volatile qualifiers.  */
+      type = make_cv_type (1, TYPE_VOLATILE (type), type, 0);
       break;
 
     case 'B':                  /* Volatile qual on some type (Sun) */
@@ -2595,7 +2596,7 @@ again:
       if (type_descriptor == 'i' && !os9k_stabs)
        return error_type (pp, objfile);
       type = read_type (pp, objfile);
-      /* FIXME! For now, we ignore const and volatile qualifiers.  */
+      type = make_cv_type (TYPE_CONST (type), 1, type, 0);
       break;
 
     case '@':
This page took 0.024162 seconds and 4 git commands to generate.