Commit 5fd8300b by Ian Lance Taylor Committed by Ian Lance Taylor

bitmap.c (bitmap_clear): Don't declare as inline.

	* bitmap.c (bitmap_clear): Don't declare as inline.
	* gimple.c (gimplify_assign): Likewise.
	* tree-ssa-sccvn.c (vn_nary_op_compute_hash): Likewise.
	* haifa-sched.c (insn_cost): Don't declare with HAIFA_INLINE.
	(sched_scan_info): Remove duplicate definition.

From-SVN: r148539
parent fe673cc9
2009-06-16 Ian Lance Taylor <iant@google.com> 2009-06-16 Ian Lance Taylor <iant@google.com>
* bitmap.c (bitmap_clear): Don't declare as inline.
* gimple.c (gimplify_assign): Likewise.
* tree-ssa-sccvn.c (vn_nary_op_compute_hash): Likewise.
* haifa-sched.c (insn_cost): Don't declare with HAIFA_INLINE.
(sched_scan_info): Remove duplicate definition.
2009-06-16 Ian Lance Taylor <iant@google.com>
* c-common.c (skip_evaluation): Don't define. * c-common.c (skip_evaluation): Don't define.
(c_inhibit_evaluation_warnings): Define global variable. (c_inhibit_evaluation_warnings): Define global variable.
(overflow_warning): Check c_inhibit_evaluation_warnings rather (overflow_warning): Check c_inhibit_evaluation_warnings rather
......
...@@ -291,7 +291,7 @@ bitmap_elt_clear_from (bitmap head, bitmap_element *elt) ...@@ -291,7 +291,7 @@ bitmap_elt_clear_from (bitmap head, bitmap_element *elt)
/* Clear a bitmap by freeing the linked list. */ /* Clear a bitmap by freeing the linked list. */
inline void void
bitmap_clear (bitmap head) bitmap_clear (bitmap head)
{ {
if (head->first) if (head->first)
......
...@@ -448,7 +448,7 @@ gimple_build_assign_with_ops_stat (enum tree_code subcode, tree lhs, tree op1, ...@@ -448,7 +448,7 @@ gimple_build_assign_with_ops_stat (enum tree_code subcode, tree lhs, tree op1,
This function returns the newly created GIMPLE_ASSIGN tuple. */ This function returns the newly created GIMPLE_ASSIGN tuple. */
inline gimple gimple
gimplify_assign (tree dst, tree src, gimple_seq *seq_p) gimplify_assign (tree dst, tree src, gimple_seq *seq_p)
{ {
tree t = build2 (MODIFY_EXPR, TREE_TYPE (dst), dst, src); tree t = build2 (MODIFY_EXPR, TREE_TYPE (dst), dst, src);
......
...@@ -601,7 +601,7 @@ static rtx last_scheduled_insn; ...@@ -601,7 +601,7 @@ static rtx last_scheduled_insn;
/* Compute cost of executing INSN. /* Compute cost of executing INSN.
This is the number of cycles between instruction issue and This is the number of cycles between instruction issue and
instruction results. */ instruction results. */
HAIFA_INLINE int int
insn_cost (rtx insn) insn_cost (rtx insn)
{ {
int cost; int cost;
...@@ -4721,8 +4721,6 @@ check_cfg (rtx head, rtx tail) ...@@ -4721,8 +4721,6 @@ check_cfg (rtx head, rtx tail)
#endif /* ENABLE_CHECKING */ #endif /* ENABLE_CHECKING */
const struct sched_scan_info_def *sched_scan_info;
/* Extend per basic block data structures. */ /* Extend per basic block data structures. */
static void static void
extend_bb (void) extend_bb (void)
......
...@@ -1362,7 +1362,7 @@ vn_reference_insert_pieces (tree vuse, alias_set_type set, tree type, ...@@ -1362,7 +1362,7 @@ vn_reference_insert_pieces (tree vuse, alias_set_type set, tree type,
/* Compute and return the hash value for nary operation VBO1. */ /* Compute and return the hash value for nary operation VBO1. */
inline hashval_t hashval_t
vn_nary_op_compute_hash (const vn_nary_op_t vno1) vn_nary_op_compute_hash (const vn_nary_op_t vno1)
{ {
hashval_t hash = 0; hashval_t hash = 0;
......
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