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
This commit is contained in:
parent
0f363a3b8c
commit
777c888909
@ -1,3 +1,11 @@
|
||||
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>
|
||||
|
||||
PR libfortran/22142
|
||||
|
@ -17,7 +17,7 @@ struct rtx_def
|
||||
enum rtx_code code:16;
|
||||
};
|
||||
|
||||
static int
|
||||
int
|
||||
nonlocal_mentioned_p (x)
|
||||
rtx x;
|
||||
{
|
||||
|
@ -2,7 +2,8 @@
|
||||
/* { dg-options "-O1 -fdump-tree-optimized" } */
|
||||
|
||||
static int copying_arguments;
|
||||
static int
|
||||
|
||||
int
|
||||
foo ()
|
||||
{
|
||||
unsigned int regno;
|
||||
|
@ -14,7 +14,8 @@ struct rtx_def
|
||||
enum rtx_code code:16;
|
||||
unsigned frame_related:1;
|
||||
};
|
||||
static rtx
|
||||
|
||||
rtx
|
||||
find_base_value (src)
|
||||
rtx src;
|
||||
{
|
||||
|
@ -23,7 +23,7 @@ struct rtx_def
|
||||
static int *uid_cuid;
|
||||
static int max_uid_cuid;
|
||||
|
||||
static rtx
|
||||
rtx
|
||||
bar (rtx r)
|
||||
{
|
||||
rtx place = r;
|
||||
|
@ -15,7 +15,7 @@ struct rtx_def
|
||||
};
|
||||
static rtx current_sym_addr;
|
||||
|
||||
static int
|
||||
int
|
||||
foo ()
|
||||
{
|
||||
if (current_sym_addr->code == 42
|
||||
|
@ -31,6 +31,7 @@ AT_class (a)
|
||||
{
|
||||
return a->dw_attr_val.val_class;
|
||||
}
|
||||
|
||||
extern __inline__ dw_loc_list_ref
|
||||
AT_loc_list (a)
|
||||
dw_attr_ref a;
|
||||
@ -38,7 +39,8 @@ AT_loc_list (a)
|
||||
if (AT_class (a) == dw_val_class_loc_list)
|
||||
return a->dw_attr_val.v.val_loc_list;
|
||||
}
|
||||
static void
|
||||
|
||||
void
|
||||
output_location_lists (die)
|
||||
dw_die_ref die;
|
||||
{
|
||||
|
@ -21,7 +21,8 @@ typedef struct reg_info_def
|
||||
extern varray_type reg_n_info;
|
||||
static rtx *reg_base_value;
|
||||
static rtx *new_reg_base_value;
|
||||
static rtx
|
||||
|
||||
rtx
|
||||
blah (unsigned int regno)
|
||||
{
|
||||
if (new_reg_base_value[regno] && ((*(
|
||||
|
@ -9,7 +9,8 @@ struct rtx_def
|
||||
};
|
||||
static int *block_to_bb;
|
||||
static int target_bb;
|
||||
static int
|
||||
|
||||
int
|
||||
rgn_rank (rtx insn1, rtx insn2)
|
||||
{
|
||||
if (block_to_bb[insn1->bb] != block_to_bb[insn2->bb])
|
||||
|
Loading…
Reference in New Issue
Block a user