aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-pretty-print.c
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2013-09-24 15:57:00 +0000
committerChristophe Lyon <clyon@gcc.gnu.org>2013-09-24 17:57:00 +0200
commit0498471be6e90c14f3fdf42789117bae39868f2b (patch)
tree561848f23b0bceeb7edb8e9b5b7a5d8bcb965f2d /gcc/tree-pretty-print.c
parent5a8c2b571c68cea56cab84c90bf407363c8a3587 (diff)
downloadgcc-0498471be6e90c14f3fdf42789117bae39868f2b.zip
gcc-0498471be6e90c14f3fdf42789117bae39868f2b.tar.gz
gcc-0498471be6e90c14f3fdf42789117bae39868f2b.tar.bz2
gimple-pretty-print.c: Various whitespace tweaks.
2013-09-24 Christophe Lyon <christophe.lyon@linaro.org> * gimple-pretty-print.c: Various whitespace tweaks. * tree-core.h: Likewise. * tree-pretty-print.c: Likewise. * tree-ssa-alias.c: Likewise. * tree-ssa-copy.c: Likewise. * tree-ssanames.c: Likewise. * tree-ssanames.h: Likewise. * tree-vrp.c: Likewise. From-SVN: r202869
Diffstat (limited to 'gcc/tree-pretty-print.c')
-rw-r--r--gcc/tree-pretty-print.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c
index a5f9a71..bd6fd81 100644
--- a/gcc/tree-pretty-print.c
+++ b/gcc/tree-pretty-print.c
@@ -1063,8 +1063,8 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags,
pp_string (buffer, "B"); /* pseudo-unit */
}
else
- pp_double_int (buffer, tree_to_double_int (node),
- TYPE_UNSIGNED (TREE_TYPE (node)));
+ pp_double_int (buffer, tree_to_double_int (node),
+ TYPE_UNSIGNED (TREE_TYPE (node)));
break;
case REAL_CST:
@@ -3191,16 +3191,16 @@ pp_double_int (pretty_printer *pp, double_int d, bool uns)
unsigned HOST_WIDE_INT low = d.low;
HOST_WIDE_INT high = d.high;
if (!uns && d.is_negative ())
- {
- pp_minus (pp);
- high = ~high + !low;
- low = -low;
- }
+ {
+ pp_minus (pp);
+ high = ~high + !low;
+ low = -low;
+ }
/* Would "%x%0*x" or "%x%*0x" get zero-padding on all
- systems? */
+ systems? */
sprintf (pp_buffer (pp)->digit_buffer,
- HOST_WIDE_INT_PRINT_DOUBLE_HEX,
- (unsigned HOST_WIDE_INT) high, low);
+ HOST_WIDE_INT_PRINT_DOUBLE_HEX,
+ (unsigned HOST_WIDE_INT) high, low);
pp_string (pp, pp_buffer (pp)->digit_buffer);
}
}