aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2006-08-28 17:18:29 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2006-08-28 17:18:29 +0000
commit03a569a38c07e2094cd76fd1e951a3e52c7568fa (patch)
tree40343f32693521b2b9002ab7ed701bb4bcc0d94b /gcc
parent1aeceea452b6593223a2874f5b266455ea811297 (diff)
downloadgcc-03a569a38c07e2094cd76fd1e951a3e52c7568fa.zip
gcc-03a569a38c07e2094cd76fd1e951a3e52c7568fa.tar.gz
gcc-03a569a38c07e2094cd76fd1e951a3e52c7568fa.tar.bz2
re PR middle-end/26632 (spurious warning: value computed is not used)
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. From-SVN: r116510
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/convert.c9
-rw-r--r--gcc/testsuite/ChangeLog5
3 files changed, 19 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 745c642..733fa47 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2006-08-28 Kazu Hirata <kazu@codesourcery.com>
+
+ PR middle-end/26632
+ * convert.c (convert_to_integer): Set TREE_NO_WARNING to 1 on
+ an implicit conversion.
+
2006-08-28 Prafulla Thakare <prafullat@kpitcummins.com>
* config/h8300/h8300.c (TARGET_DEFAULT_TARGET_FLAGS): New.
diff --git a/gcc/convert.c b/gcc/convert.c
index 2757195..118889f 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
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 65900a7..767f94e 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-28 Kazu Hirata <kazu@codesourcery.com>
+
+ PR middle-end/26632
+ * gcc.dg/pr26632.c: New.
+
2006-08-27 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/28354