diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-01 17:04:14 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-01 17:04:14 +0000 |
commit | 831e3af408ecbf4cae6b395b2701ca5a24205cd6 (patch) | |
tree | c502797f44a3df6b1f00cc012a4910f59a628e1a /gcc/fold-const.c | |
parent | 8a3289d2e5e204d9300840164257c79cc602ac4c (diff) | |
download | gcc-831e3af408ecbf4cae6b395b2701ca5a24205cd6.tar.gz |
* fold-const.c (fold_range_test): Always return a value.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18343 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 12d9cadad3d..32f39962369 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -3255,8 +3255,9 @@ fold_range_test (exp) TREE_TYPE (exp), lhs, rhs); } } - else - return 0; + + + return 0; } /* Subroutine for fold_truthop: C is an INTEGER_CST interpreted as a P |