From ab2c1de89558662bbdeed695778f46b4f64fa2d5 Mon Sep 17 00:00:00 2001 From: rsandifo Date: Tue, 29 Oct 2013 21:21:12 +0000 Subject: - Fix comment typos that I'd introducted. - Fix spurious whitespace differences. - Use const X & instead of X for *wide_int parameters. - Fuse declarations and initialisers. - Avoid unnecessary *wide_int temporaries (e.g. wide_int (x) == 0 -> wi::eq_p (x, 0)). - Fix some long lines. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@204183 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/graphite-sese-to-poly.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gcc/graphite-sese-to-poly.c') diff --git a/gcc/graphite-sese-to-poly.c b/gcc/graphite-sese-to-poly.c index c82929b8b94..b929511c728 100644 --- a/gcc/graphite-sese-to-poly.c +++ b/gcc/graphite-sese-to-poly.c @@ -53,8 +53,7 @@ along with GCC; see the file COPYING3. If not see static inline void tree_int_to_gmp (tree t, mpz_t res) { - wide_int wi = t; - wi::to_mpz (wi, res, TYPE_SIGN (TREE_TYPE (t))); + wi::to_mpz (t, res, TYPE_SIGN (TREE_TYPE (t))); } /* Returns the index of the PHI argument defined in the outermost -- cgit v1.2.1