Commit 6ea98dee by Ian Lance Taylor Committed by Ian Lance Taylor

re PR go/68477 (error: type variant differs by TYPE_STRING_FLAG.)

	PR go/68477
	* go-gcc.cc (Gcc_backend::string_constant_expression): Don't set
	TYPE_STRING_FLAG on a variant type.

From-SVN: r231096
parent 45285060
2015-11-30 Ian Lance Taylor <iant@google.com>
PR go/68477
* go-gcc.cc (Gcc_backend::string_constant_expression): Don't set
TYPE_STRING_FLAG on a variant type.
2015-11-11 Andrew MacLeod <amacleod@redhat.com>
* go-backend.c: Remove unused header files.
......
......@@ -1279,7 +1279,6 @@ Gcc_backend::string_constant_expression(const std::string& val)
tree const_char_type = build_qualified_type(unsigned_char_type_node,
TYPE_QUAL_CONST);
tree string_type = build_array_type(const_char_type, index_type);
string_type = build_variant_type_copy(string_type);
TYPE_STRING_FLAG(string_type) = 1;
tree string_val = build_string(val.length(), val.data());
TREE_TYPE(string_val) = string_type;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment