OSDN Git Service

PR plugins/53126
[pf3gnuchains/gcc-fork.git] / gcc / tree-streamer-out.c
index df8b92a..21689df 100644 (file)
@@ -552,7 +552,7 @@ write_ts_field_decl_tree_pointers (struct output_block *ob, tree expr,
 {
   stream_write_tree (ob, DECL_FIELD_OFFSET (expr), ref_p);
   stream_write_tree (ob, DECL_BIT_FIELD_TYPE (expr), ref_p);
-  stream_write_tree (ob, DECL_QUALIFIER (expr), ref_p);
+  /* Do not stream DECL_QUALIFIER, it is useless after gimplification.  */
   stream_write_tree (ob, DECL_FIELD_BIT_OFFSET (expr), ref_p);
   stream_write_tree (ob, DECL_FCONTEXT (expr), ref_p);
 }
@@ -776,7 +776,7 @@ write_ts_optimization (struct output_block *ob, tree expr)
   struct bitpack_d bp;
   unsigned i, len;
 
-  /* The cl_optimizaation is generated by the options
+  /* The cl_optimization is generated by the options
      awk script, so we just recreate a byte-by-byte copy here. */
 
   bp = bitpack_create (ob->main_stream);