tree-cfg.c (verify_gimple_assign_unary): Fix typo in previous commit.
2012-05-22 Richard Guenther <rguenther@suse.de> * tree-cfg.c (verify_gimple_assign_unary): Fix typo in previous commit. From-SVN: r187771
This commit is contained in:
parent
f391a85582
commit
72d5c6c157
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-05-22 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
* tree-cfg.c (verify_gimple_assign_unary): Fix typo in previous
|
||||
commit.
|
||||
|
||||
2012-05-22 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
PR middle-end/53437
|
||||
|
|
|
@ -3376,8 +3376,8 @@ verify_gimple_assign_unary (gimple stmt)
|
|||
/* Allow conversion from integral to offset type and vice versa. */
|
||||
if ((TREE_CODE (lhs_type) == OFFSET_TYPE
|
||||
&& INTEGRAL_TYPE_P (rhs1_type))
|
||||
|| (TREE_CODE (lhs_type) == INTEGER_TYPE
|
||||
&& INTEGRAL_TYPE_P (rhs1_type)))
|
||||
|| (INTEGRAL_TYPE_P (lhs_type)
|
||||
&& TREE_CODE (rhs1_type) == OFFSET_TYPE))
|
||||
return false;
|
||||
|
||||
/* Otherwise assert we are converting between types of the
|
||||
|
|
Loading…
Add table
Reference in a new issue