summaryrefslogtreecommitdiff
path: root/gcc/reorg.c
diff options
context:
space:
mode:
authorDoug Evans <dje@gnu.org>1994-05-15 01:21:08 +0000
committerDoug Evans <dje@gnu.org>1994-05-15 01:21:08 +0000
commit44a965f646fb614bc42721fb93dd1cc1e69f8116 (patch)
treece8f229811c422f6f9809a7b0b89fbc2c2a02789 /gcc/reorg.c
parent91cae90df6b7a7d26f562593e8ebb039a66d5222 (diff)
downloadgcc-44a965f646fb614bc42721fb93dd1cc1e69f8116.tar.gz
(mark_referenced_resources, case CALL_INSN): Fix indentation.
From-SVN: r7298
Diffstat (limited to 'gcc/reorg.c')
-rw-r--r--gcc/reorg.c42
1 files changed, 21 insertions, 21 deletions
diff --git a/gcc/reorg.c b/gcc/reorg.c
index 43a6671429e..3f6014171d7 100644
--- a/gcc/reorg.c
+++ b/gcc/reorg.c
@@ -403,27 +403,27 @@ mark_referenced_resources (x, res, include_delayed_effects)
if (global_regs[i])
SET_HARD_REG_BIT (res->regs, i);
- {
- rtx link;
-
- for (link = CALL_INSN_FUNCTION_USAGE (x);
- link;
- link = XEXP (link, 1))
- if (GET_CODE (XEXP (link, 0)) == USE)
- {
- for (i = 1; i < seq_size; i++)
- {
- rtx slot_pat = PATTERN (XVECEXP (sequence, 0, i));
- if (GET_CODE (slot_pat) == SET
- && rtx_equal_p (SET_DEST (slot_pat),
- SET_DEST (XEXP (link, 0))))
- break;
- }
- if (i >= seq_size)
- mark_referenced_resources (SET_DEST (XEXP (link, 0)),
- res, 0);
- }
- }
+ {
+ rtx link;
+
+ for (link = CALL_INSN_FUNCTION_USAGE (x);
+ link;
+ link = XEXP (link, 1))
+ if (GET_CODE (XEXP (link, 0)) == USE)
+ {
+ for (i = 1; i < seq_size; i++)
+ {
+ rtx slot_pat = PATTERN (XVECEXP (sequence, 0, i));
+ if (GET_CODE (slot_pat) == SET
+ && rtx_equal_p (SET_DEST (slot_pat),
+ SET_DEST (XEXP (link, 0))))
+ break;
+ }
+ if (i >= seq_size)
+ mark_referenced_resources (SET_DEST (XEXP (link, 0)),
+ res, 0);
+ }
+ }
}
/* ... fall through to other INSN processing ... */