Commit 6e176bd6 by Martin v. Löwis Committed by Martin v. Löwis

typeck.c (string_conv_p): Use same_type_p to check whether we try to convert…

typeck.c (string_conv_p): Use same_type_p to check whether we try to convert between char and wchar_t.

	* typeck.c (string_conv_p): Use same_type_p to check whether we
	try to convert between char and wchar_t.

From-SVN: r26764
parent 891febc6
1999-05-04 Martin von Lwis <loewis@informatik.hu-berlin.de>
* typeck.c (string_conv_p): Use same_type_p to check whether we
try to convert between char and wchar_t.
1999-05-03 Mark Mitchell <mark@codesourcery.com>
* search.c (lookup_field_r): Set the TREE_TYPE of an ambiguous
......
......@@ -1886,7 +1886,7 @@ string_conv_p (totype, exp, warn)
if (TREE_CODE (exp) == STRING_CST)
{
/* Make sure that we don't try to convert between char and wchar_t. */
if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (exp))) != t)
if (!same_type_p (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (exp))), t))
return 0;
}
else
......
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