Commit a32db605 by Jakub Jelinek Committed by Jakub Jelinek

fold-const.c (fold): Use (*lang_hooks.types.unsigned_type) instead of unsigned_type.

	* fold-const.c (fold): Use (*lang_hooks.types.unsigned_type)
	instead of unsigned_type.

From-SVN: r52474
parent 5a28d8cc
2002-04-18 Jakub Jelinek <jakub@redhat.com>
* fold-const.c (fold): Use (*lang_hooks.types.unsigned_type)
instead of unsigned_type.
Thu Apr 18 15:49:12 CEST 2002 Jan Hubicka <jh@suse.cz> Thu Apr 18 15:49:12 CEST 2002 Jan Hubicka <jh@suse.cz>
* i386.h (SSE_FLOAT_MODE_P): Kill bogus TARGET_SSE_MATH check. * i386.h (SSE_FLOAT_MODE_P): Kill bogus TARGET_SSE_MATH check.
......
...@@ -4726,7 +4726,7 @@ fold (expr) ...@@ -4726,7 +4726,7 @@ fold (expr)
&& (LOAD_EXTEND_OP (TYPE_MODE (TREE_TYPE (and0))) && (LOAD_EXTEND_OP (TYPE_MODE (TREE_TYPE (and0)))
== ZERO_EXTEND)) == ZERO_EXTEND))
{ {
tree uns = unsigned_type (TREE_TYPE (and0)); tree uns = (*lang_hooks.types.unsigned_type) (TREE_TYPE (and0));
and0 = convert (uns, and0); and0 = convert (uns, and0);
and1 = convert (uns, and1); and1 = convert (uns, and1);
} }
......
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