aboutsummaryrefslogtreecommitdiff
path: root/gcc/struct-equiv.c
diff options
context:
space:
mode:
authorJ"orn Rennecke <joern.rennecke@st.com>2005-12-12 14:55:59 +0000
committerJoern Rennecke <amylaar@gcc.gnu.org>2005-12-12 14:55:59 +0000
commit22e0395a104807767c1dda3e97ba8a44d435dee7 (patch)
tree82ddbcc23afcc99d1d1a5c150cc7d84e9f8ddb39 /gcc/struct-equiv.c
parente5c681b3ee561d6576eff6a4d9244d7916f522e6 (diff)
downloadgcc-22e0395a104807767c1dda3e97ba8a44d435dee7.zip
gcc-22e0395a104807767c1dda3e97ba8a44d435dee7.tar.gz
gcc-22e0395a104807767c1dda3e97ba8a44d435dee7.tar.bz2
cfgcleanup.c (condjump_equiv_p, [...]): Fix whitespace in vincinity of to-be-installed changes.
2005-12-12 J"orn Rennecke <joern.rennecke@st.com> * cfgcleanup.c (condjump_equiv_p, try_crossjump_to_edge): Fix whitespace in vincinity of to-be-installed changes. * struct-equiv.c (merge_memattrs, death_notes_match_p): Fix whitespace. (insns_match_p): Likewise. From-SVN: r108410
Diffstat (limited to 'gcc/struct-equiv.c')
-rw-r--r--gcc/struct-equiv.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/struct-equiv.c b/gcc/struct-equiv.c
index 0ba1b9d..9169958 100644
--- a/gcc/struct-equiv.c
+++ b/gcc/struct-equiv.c
@@ -69,7 +69,7 @@ merge_memattrs (rtx x, rtx y)
MEM_ATTRS (y) = 0;
else if (! MEM_ATTRS (y))
MEM_ATTRS (x) = 0;
- else
+ else
{
rtx mem_size;
@@ -78,7 +78,7 @@ merge_memattrs (rtx x, rtx y)
set_mem_alias_set (x, 0);
set_mem_alias_set (y, 0);
}
-
+
if (! mem_expr_equal_p (MEM_EXPR (x), MEM_EXPR (y)))
{
set_mem_expr (x, 0);
@@ -91,7 +91,7 @@ merge_memattrs (rtx x, rtx y)
set_mem_offset (x, 0);
set_mem_offset (y, 0);
}
-
+
if (!MEM_SIZE (x))
mem_size = NULL_RTX;
else if (!MEM_SIZE (y))
@@ -106,7 +106,7 @@ merge_memattrs (rtx x, rtx y)
set_mem_align (y, MEM_ALIGN (x));
}
}
-
+
fmt = GET_RTX_FORMAT (code);
for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
{
@@ -143,8 +143,8 @@ death_notes_match_p (rtx i1 ATTRIBUTE_UNUSED, rtx i2 ATTRIBUTE_UNUSED,
if ((mode & CLEANUP_POST_REGSTACK) && stack_regs_mentioned (i1))
{
/* If register stack conversion has already been done, then
- death notes must also be compared before it is certain that
- the two instruction streams match. */
+ death notes must also be compared before it is certain that
+ the two instruction streams match. */
rtx note;
HARD_REG_SET i1_regset, i2_regset;
@@ -200,7 +200,7 @@ insns_match_p (int mode, rtx i1, rtx i2)
if (CALL_P (i1)
&& (!rtx_equal_p (CALL_INSN_FUNCTION_USAGE (i1),
- CALL_INSN_FUNCTION_USAGE (i2))
+ CALL_INSN_FUNCTION_USAGE (i2))
|| SIBLING_CALL_P (i1) != SIBLING_CALL_P (i2)))
return false;