aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssanames.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-ssanames.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-ssanames.c')
-rw-r--r--gcc/tree-ssanames.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-ssanames.c b/gcc/tree-ssanames.c
index 1a70f16..d54d8c9 100644
--- a/gcc/tree-ssanames.c
+++ b/gcc/tree-ssanames.c
@@ -206,7 +206,7 @@ get_range_info (tree name, double_int *min, double_int *max)
/* Return VR_VARYING for SSA_NAMEs with NULL RANGE_INFO or SSA_NAMEs
with integral types width > 2 * HOST_BITS_PER_WIDE_INT precision. */
if (!ri || (GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (name)))
- > 2 * HOST_BITS_PER_WIDE_INT))
+ > 2 * HOST_BITS_PER_WIDE_INT))
return VR_VARYING;
/* If min > max, it is VR_ANTI_RANGE. */
@@ -455,14 +455,14 @@ duplicate_ssa_name_fn (struct function *fn, tree name, gimple stmt)
struct ptr_info_def *old_ptr_info = SSA_NAME_PTR_INFO (name);
if (old_ptr_info)
- duplicate_ssa_name_ptr_info (new_name, old_ptr_info);
+ duplicate_ssa_name_ptr_info (new_name, old_ptr_info);
}
else
{
struct range_info_def *old_range_info = SSA_NAME_RANGE_INFO (name);
if (old_range_info)
- duplicate_ssa_name_range_info (new_name, old_range_info);
+ duplicate_ssa_name_range_info (new_name, old_range_info);
}
return new_name;