summaryrefslogtreecommitdiff
path: root/gcc/ssa-dce.c
diff options
context:
space:
mode:
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. */