Commit 777c8889 by Richard Henderson Committed by Richard Henderson

20030708-1.c: Remove static from test function.

        * gcc.dg/tree-ssa/20030708-1.c: Remove static from test function.
        * gcc.dg/tree-ssa/20030709-1.c, gcc.dg/tree-ssa/20030714-1.c,
        gcc.dg/tree-ssa/20030807-1.c, gcc.dg/tree-ssa/20030807-5.c,
        gcc.dg/tree-ssa/20030807-8.c, gcc.dg/tree-ssa/20030815-1.c,
        gcc.dg/tree-ssa/20030922-2.c: Likewise.

From-SVN: r101393
parent 0f363a3b
2005-06-28 Richard Henderson <rth@redhat.com>
* gcc.dg/tree-ssa/20030708-1.c: Remove static from test function.
* gcc.dg/tree-ssa/20030709-1.c, gcc.dg/tree-ssa/20030714-1.c,
gcc.dg/tree-ssa/20030807-1.c, gcc.dg/tree-ssa/20030807-5.c,
gcc.dg/tree-ssa/20030807-8.c, gcc.dg/tree-ssa/20030815-1.c,
gcc.dg/tree-ssa/20030922-2.c: Likewise.
2005-06-28 Thomas Koenig <Thomas.Koenig@online.de> 2005-06-28 Thomas Koenig <Thomas.Koenig@online.de>
PR libfortran/22142 PR libfortran/22142
......
...@@ -17,7 +17,7 @@ struct rtx_def ...@@ -17,7 +17,7 @@ struct rtx_def
enum rtx_code code:16; enum rtx_code code:16;
}; };
static int int
nonlocal_mentioned_p (x) nonlocal_mentioned_p (x)
rtx x; rtx x;
{ {
......
...@@ -2,7 +2,8 @@ ...@@ -2,7 +2,8 @@
/* { dg-options "-O1 -fdump-tree-optimized" } */ /* { dg-options "-O1 -fdump-tree-optimized" } */
static int copying_arguments; static int copying_arguments;
static int
int
foo () foo ()
{ {
unsigned int regno; unsigned int regno;
......
...@@ -14,7 +14,8 @@ struct rtx_def ...@@ -14,7 +14,8 @@ struct rtx_def
enum rtx_code code:16; enum rtx_code code:16;
unsigned frame_related:1; unsigned frame_related:1;
}; };
static rtx
rtx
find_base_value (src) find_base_value (src)
rtx src; rtx src;
{ {
......
...@@ -23,7 +23,7 @@ struct rtx_def ...@@ -23,7 +23,7 @@ struct rtx_def
static int *uid_cuid; static int *uid_cuid;
static int max_uid_cuid; static int max_uid_cuid;
static rtx rtx
bar (rtx r) bar (rtx r)
{ {
rtx place = r; rtx place = r;
......
...@@ -15,7 +15,7 @@ struct rtx_def ...@@ -15,7 +15,7 @@ struct rtx_def
}; };
static rtx current_sym_addr; static rtx current_sym_addr;
static int int
foo () foo ()
{ {
if (current_sym_addr->code == 42 if (current_sym_addr->code == 42
......
...@@ -31,6 +31,7 @@ AT_class (a) ...@@ -31,6 +31,7 @@ AT_class (a)
{ {
return a->dw_attr_val.val_class; return a->dw_attr_val.val_class;
} }
extern __inline__ dw_loc_list_ref extern __inline__ dw_loc_list_ref
AT_loc_list (a) AT_loc_list (a)
dw_attr_ref a; dw_attr_ref a;
...@@ -38,7 +39,8 @@ AT_loc_list (a) ...@@ -38,7 +39,8 @@ AT_loc_list (a)
if (AT_class (a) == dw_val_class_loc_list) if (AT_class (a) == dw_val_class_loc_list)
return a->dw_attr_val.v.val_loc_list; return a->dw_attr_val.v.val_loc_list;
} }
static void
void
output_location_lists (die) output_location_lists (die)
dw_die_ref die; dw_die_ref die;
{ {
......
...@@ -21,7 +21,8 @@ typedef struct reg_info_def ...@@ -21,7 +21,8 @@ typedef struct reg_info_def
extern varray_type reg_n_info; extern varray_type reg_n_info;
static rtx *reg_base_value; static rtx *reg_base_value;
static rtx *new_reg_base_value; static rtx *new_reg_base_value;
static rtx
rtx
blah (unsigned int regno) blah (unsigned int regno)
{ {
if (new_reg_base_value[regno] && ((*( if (new_reg_base_value[regno] && ((*(
......
...@@ -9,7 +9,8 @@ struct rtx_def ...@@ -9,7 +9,8 @@ struct rtx_def
}; };
static int *block_to_bb; static int *block_to_bb;
static int target_bb; static int target_bb;
static int
int
rgn_rank (rtx insn1, rtx insn2) rgn_rank (rtx insn1, rtx insn2)
{ {
if (block_to_bb[insn1->bb] != block_to_bb[insn2->bb]) if (block_to_bb[insn1->bb] != block_to_bb[insn2->bb])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment