summaryrefslogtreecommitdiff
path: root/gcc/convert.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2006-08-28 17:18:29 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2006-08-28 17:18:29 +0000
commit9c6fee9d552a6c6b26fbce9858633807f0932c19 (patch)
tree40343f32693521b2b9002ab7ed701bb4bcc0d94b /gcc/convert.c
parent51136ff46e09f46ee20b94dc1c5b09ddc7bd9b49 (diff)
downloadgcc-9c6fee9d552a6c6b26fbce9858633807f0932c19.tar.gz
gcc/
PR middle-end/26632 * convert.c (convert_to_integer): Set TREE_NO_WARNING to 1 on an implicit conversion. gcc/testsuite/ PR middle-end/26632 * gcc.dg/pr26632.c: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@116510 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/convert.c')
-rw-r--r--gcc/convert.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/convert.c b/gcc/convert.c
index 27571956a1e..118889fad44 100644
--- a/gcc/convert.c
+++ b/gcc/convert.c
@@ -487,6 +487,7 @@ convert_to_integer (tree type, tree expr)
else if (outprec >= inprec)
{
enum tree_code code;
+ tree tem;
/* If the precision of the EXPR's type is K bits and the
destination mode has more bits, and the sign is changing,
@@ -504,7 +505,13 @@ convert_to_integer (tree type, tree expr)
else
code = NOP_EXPR;
- return fold_build1 (code, type, expr);
+ tem = fold_unary (code, type, expr);
+ if (tem)
+ return tem;
+
+ tem = build1 (code, type, expr);
+ TREE_NO_WARNING (tem) = 1;
+ return tem;
}
/* If TYPE is an enumeral type or a type with a precision less