diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-10 18:06:04 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-10 18:06:04 +0000 |
commit | d99d10ca756add0d0e00fc54d635b5d31b050f73 (patch) | |
tree | 3cc51caebfbcea6025a83a294e6257b8fa1640e1 /gcc/fold-const.c | |
parent | 25b6c9eb81ac732bb4fa483101f01f75af4f3808 (diff) | |
download | gcc-d99d10ca756add0d0e00fc54d635b5d31b050f73.tar.gz |
Remove INT_CST_LT and INT_CST_LE.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@205867 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 7ea6470ac99..a0d8e917d68 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -16409,7 +16409,7 @@ fold_relational_const (enum tree_code code, tree type, tree op0, tree op1) if (code == EQ_EXPR) result = tree_int_cst_equal (op0, op1); else - result = INT_CST_LT (op0, op1); + result = tree_int_cst_lt (op0, op1); } else return NULL_TREE; |