summaryrefslogtreecommitdiff
path: root/gcc/targhooks.c
diff options
context:
space:
mode:
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2013-12-10 18:06:04 +0000
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2013-12-10 18:06:04 +0000
commitd99d10ca756add0d0e00fc54d635b5d31b050f73 (patch)
tree3cc51caebfbcea6025a83a294e6257b8fa1640e1 /gcc/targhooks.c
parent25b6c9eb81ac732bb4fa483101f01f75af4f3808 (diff)
downloadgcc-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/targhooks.c')
-rw-r--r--gcc/targhooks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/targhooks.c b/gcc/targhooks.c
index 5b914e7df41..1e2b85fd574 100644
--- a/gcc/targhooks.c
+++ b/gcc/targhooks.c
@@ -290,7 +290,7 @@ default_cxx_get_cookie_size (tree type)
sizetype_size = size_in_bytes (sizetype);
type_align = size_int (TYPE_ALIGN_UNIT (type));
- if (INT_CST_LT (type_align, sizetype_size))
+ if (tree_int_cst_lt (type_align, sizetype_size))
cookie_size = sizetype_size;
else
cookie_size = type_align;