aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Edelsohn <dje@gcc.gnu.org>2002-08-09 22:20:24 -0400
committerDavid Edelsohn <dje@gcc.gnu.org>2002-08-09 22:20:24 -0400
commitc15b529fe02c6a747dde46a332d112c414ed795d (patch)
tree4dafb2478d6d2a99dea0a3f1596a7798d842fd1d
parent0f7866e7ba109bc68ae2c0d14ec0399765fc144b (diff)
downloadgcc-c15b529fe02c6a747dde46a332d112c414ed795d.zip
gcc-c15b529fe02c6a747dde46a332d112c414ed795d.tar.gz
gcc-c15b529fe02c6a747dde46a332d112c414ed795d.tar.bz2
- fix formatting of previous patch.
From-SVN: r56174
-rw-r--r--gcc/config/rs6000/rs6000.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index 28a0a75..81df7c3 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -9431,12 +9431,12 @@ function_ok_for_sibcall (fndecl)
for (type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
type; type = TREE_CHAIN (type))
{
- if (TREE_CODE (TREE_VALUE (type)) == VECTOR_TYPE )
+ if (TREE_CODE (TREE_VALUE (type)) == VECTOR_TYPE)
return 0;
}
}
if (DEFAULT_ABI == ABI_DARWIN
- || (TREE_ASM_WRITTEN (fndecl) && !flag_pic) || !TREE_PUBLIC (fndecl))
+ || (TREE_ASM_WRITTEN (fndecl) && !flag_pic) || !TREE_PUBLIC (fndecl))
return 1;
}
return 0;
@@ -9480,10 +9480,10 @@ rs6000_ra_ever_killed ()
if (FIND_REG_INC_NOTE (insn, reg))
return 1;
else if (GET_CODE (insn) == CALL_INSN
- && !SIBLING_CALL_P (insn))
+ && !SIBLING_CALL_P (insn))
return 1;
else if (set_of (reg, insn) != NULL_RTX
- && find_reg_note (insn, REG_MAYBE_DEAD, NULL_RTX) == 0)
+ && find_reg_note (insn, REG_MAYBE_DEAD, NULL_RTX) == 0)
return 1;
}
}