summaryrefslogtreecommitdiff
path: root/gcc/config/rs6000
diff options
context:
space:
mode:
authordje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>2002-08-10 02:20:24 +0000
committerdje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>2002-08-10 02:20:24 +0000
commitc45eb3fc359f4cbf04fdb1c26ff3ceb3575e000d (patch)
tree4dafb2478d6d2a99dea0a3f1596a7798d842fd1d /gcc/config/rs6000
parent952e555ed2738f11afb7adeba745991b8a8bf1d2 (diff)
downloadgcc-c45eb3fc359f4cbf04fdb1c26ff3ceb3575e000d.tar.gz
- fix formatting of previous patch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56174 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/rs6000')
-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 28a0a7583b4..81df7c396bc 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;
}
}