summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorkraai <kraai@138bc75d-0d04-0410-961f-82ee72b054a4>2003-05-20 01:49:12 +0000
committerkraai <kraai@138bc75d-0d04-0410-961f-82ee72b054a4>2003-05-20 01:49:12 +0000
commitf7fa3a5fd6b499de277ab1338cb8ddb7be112288 (patch)
treea0ae90c628c4a05fd6ad65bf2161b3503e772089 /gcc
parent4d9c9c815eddc40d501445c43202e71ee0e7be32 (diff)
downloadgcc-f7fa3a5fd6b499de277ab1338cb8ddb7be112288.tar.gz
* alias.c (nonlocal_mentioned_p, nonlocal_referenced_p)
(nonlocal_set_p): Remove initial blank line. * dwarf2out.c (simple_type_size_in_bits): Likewise. * et-forest.c (et_forest_create): Likewise. * explow.c (stabilize): Likewise. * fix-header.c (write_lbrac): Likewise. * graph.c (start_fct, node_data): Likewise. * jump.c (only_sets_cc0_p, sets_cc0_p): Likewise. * rtlanal.c (global_reg_mentioned_p): Likewise. * tree.c (bit_position): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@66984 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog13
-rw-r--r--gcc/alias.c3
-rw-r--r--gcc/dwarf2out.c1
-rw-r--r--gcc/et-forest.c1
-rw-r--r--gcc/explow.c1
-rw-r--r--gcc/fix-header.c1
-rw-r--r--gcc/graph.c2
-rw-r--r--gcc/jump.c2
-rw-r--r--gcc/rtlanal.c1
-rw-r--r--gcc/tree.c1
10 files changed, 13 insertions, 13 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 929ee6fb8ae..a3c36bade55 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,16 @@
+2003-05-19 Matt Kraai <kraai@alumni.cmu.edu>
+
+ * alias.c (nonlocal_mentioned_p, nonlocal_referenced_p)
+ (nonlocal_set_p): Remove initial blank line.
+ * dwarf2out.c (simple_type_size_in_bits): Likewise.
+ * et-forest.c (et_forest_create): Likewise.
+ * explow.c (stabilize): Likewise.
+ * fix-header.c (write_lbrac): Likewise.
+ * graph.c (start_fct, node_data): Likewise.
+ * jump.c (only_sets_cc0_p, sets_cc0_p): Likewise.
+ * rtlanal.c (global_reg_mentioned_p): Likewise.
+ * tree.c (bit_position): Likewise.
+
2003-05-19 Alexandre Oliva <aoliva@redhat.com>
* config/mips/linux64.h (LIB_SPEC): Add missing -lc and correct
diff --git a/gcc/alias.c b/gcc/alias.c
index 4cd51e994f5..6a73d643343 100644
--- a/gcc/alias.c
+++ b/gcc/alias.c
@@ -2446,7 +2446,6 @@ static int
nonlocal_mentioned_p (x)
rtx x;
{
-
if (INSN_P (x))
{
if (GET_CODE (x) == CALL_INSN)
@@ -2544,7 +2543,6 @@ static int
nonlocal_referenced_p (x)
rtx x;
{
-
if (INSN_P (x))
{
if (GET_CODE (x) == CALL_INSN)
@@ -2624,7 +2622,6 @@ static int
nonlocal_set_p (x)
rtx x;
{
-
if (INSN_P (x))
{
if (GET_CODE (x) == CALL_INSN)
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 66e5eaf2244..aa657802e3f 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -8032,7 +8032,6 @@ static inline unsigned HOST_WIDE_INT
simple_type_size_in_bits (type)
tree type;
{
-
if (TREE_CODE (type) == ERROR_MARK)
return BITS_PER_WORD;
else if (TYPE_SIZE (type) == NULL_TREE)
diff --git a/gcc/et-forest.c b/gcc/et-forest.c
index b54f3f769b4..1a9d5a35069 100644
--- a/gcc/et-forest.c
+++ b/gcc/et-forest.c
@@ -439,7 +439,6 @@ calculate_value (node)
et_forest_t
et_forest_create ()
{
-
et_forest_t forest = xmalloc (sizeof (struct et_forest));
forest->nnodes = 0;
diff --git a/gcc/explow.c b/gcc/explow.c
index b6c290f1606..7114094d2d6 100644
--- a/gcc/explow.c
+++ b/gcc/explow.c
@@ -684,7 +684,6 @@ rtx
stabilize (x)
rtx x;
{
-
if (GET_CODE (x) != MEM
|| ! rtx_unstable_p (XEXP (x, 0)))
return x;
diff --git a/gcc/fix-header.c b/gcc/fix-header.c
index 6ec7851dc72..745570c0e32 100644
--- a/gcc/fix-header.c
+++ b/gcc/fix-header.c
@@ -415,7 +415,6 @@ int required_other = 0;
static void
write_lbrac ()
{
-
#if ADD_MISSING_EXTERN_C
if (missing_extern_C_count + required_unseen_count > 0)
fprintf (outf, "#ifdef __cplusplus\nextern \"C\" {\n#endif\n");
diff --git a/gcc/graph.c b/gcc/graph.c
index 5b660be00df..009d8767928 100644
--- a/gcc/graph.c
+++ b/gcc/graph.c
@@ -51,7 +51,6 @@ static void
start_fct (fp)
FILE *fp;
{
-
switch (graph_dump_format)
{
case vcg:
@@ -110,7 +109,6 @@ node_data (fp, tmp_rtx)
FILE *fp;
rtx tmp_rtx;
{
-
if (PREV_INSN (tmp_rtx) == 0)
{
/* This is the first instruction. Add an edge from the starting
diff --git a/gcc/jump.c b/gcc/jump.c
index 4cb9bcb1f6f..f59fdbcf9a2 100644
--- a/gcc/jump.c
+++ b/gcc/jump.c
@@ -1278,7 +1278,6 @@ int
only_sets_cc0_p (x)
rtx x;
{
-
if (! x)
return 0;
@@ -1297,7 +1296,6 @@ int
sets_cc0_p (x)
rtx x;
{
-
if (! x)
return 0;
diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c
index 1972375313d..b7fbe4a05ce 100644
--- a/gcc/rtlanal.c
+++ b/gcc/rtlanal.c
@@ -636,7 +636,6 @@ int
global_reg_mentioned_p (x)
rtx x;
{
-
if (INSN_P (x))
{
if (GET_CODE (x) == CALL_INSN)
diff --git a/gcc/tree.c b/gcc/tree.c
index 7c04b3d01fd..3271a5bd163 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -1186,7 +1186,6 @@ tree
bit_position (field)
tree field;
{
-
return bit_from_pos (DECL_FIELD_OFFSET (field),
DECL_FIELD_BIT_OFFSET (field));
}