summaryrefslogtreecommitdiff
path: root/gcc/ssa-dce.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2002-01-22 14:33:35 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-01-22 14:33:35 +0000
commitcf40364820f180bdb35437db31cdfb21ba0b0142 (patch)
tree47eb45334226fa8effd3bd4990f8351716b2e206 /gcc/ssa-dce.c
parenta8765ae7a090cfbc12b41f643938fdd17a3c0dec (diff)
downloadgcc-cf40364820f180bdb35437db31cdfb21ba0b0142.tar.gz
predict.c: Fix formatting.
* predict.c: Fix formatting. * print-tree.c: Likewise. * protoize.c: Likewise. * real.h: Likewise. * rtl.h: Likewise. * sbitmap.h: Likewise. * scan.c: Likewise. * sched-deps.c: Likewise. * sched-vis.c: Likewise. * sdbout.c: Likewise. * sibcall.c: Likewise. * ssa.c: Likewise. * ssa-ccp.c: Likewise. * ssa-dce.c: Likewise. * stmt.c: Likewise. * stor-layout.c: Likewise. * system.h: Likewise. From-SVN: r49074
Diffstat (limited to 'gcc/ssa-dce.c')
-rw-r--r--gcc/ssa-dce.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ssa-dce.c b/gcc/ssa-dce.c
index cd37b2fc910..83b4e44bf80 100644
--- a/gcc/ssa-dce.c
+++ b/gcc/ssa-dce.c
@@ -1,5 +1,5 @@
/* Dead-code elimination pass for the GNU compiler.
- Copyright (C) 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
Written by Jeffrey D. Oldham <oldham@codesourcery.com>.
This file is part of GCC.
@@ -341,7 +341,7 @@ note_inherently_necessary_set (dest, set, data)
rtx dest;
void *data;
{
- int *inherently_necessary_set_p = (int *)data;
+ int *inherently_necessary_set_p = (int *) data;
while (GET_CODE (dest) == SUBREG
|| GET_CODE (dest) == STRICT_LOW_PART
@@ -396,7 +396,7 @@ find_inherently_necessary (x)
}
default:
/* Found an impossible insn type. */
- abort();
+ abort ();
break;
}
}
@@ -521,7 +521,7 @@ ssa_eliminate_dead_code ()
for (i = 0; i < n_basic_blocks; ++i)
if (pdom[i] == INVALID_BLOCK)
pdom[i] = EXIT_BLOCK;
- el = create_edge_list();
+ el = create_edge_list ();
find_all_control_dependences (el, pdom, cdbte);
/* Find inherently necessary instructions. */