Commit 2c43a149 by Kazu Hirata Committed by Kazu Hirata

rtl.h (NOTE_PREDICTION_ALG, [...]): Remove.

	* rtl.h (NOTE_PREDICTION_ALG, NOTE_PREDICTION_FLAGS,
	NOTE_PREDICT): Remove.

From-SVN: r98088
parent 978fb452
...@@ -8,6 +8,9 @@ ...@@ -8,6 +8,9 @@
* rtl.h (RTX_EXPR_FIRST, RTX_EXPR_LAST): Remove. * rtl.h (RTX_EXPR_FIRST, RTX_EXPR_LAST): Remove.
* rtl.h (NOTE_PREDICTION_ALG, NOTE_PREDICTION_FLAGS,
NOTE_PREDICT): Remove.
2005-04-13 Eric Botcazou <ebotcazou@libertysurf.fr> 2005-04-13 Eric Botcazou <ebotcazou@libertysurf.fr>
* configure.ac (gcc_AC_CHECK_DECLS): Add vsnprintf. * configure.ac (gcc_AC_CHECK_DECLS): Add vsnprintf.
......
...@@ -773,11 +773,6 @@ extern const char * const reg_note_name[]; ...@@ -773,11 +773,6 @@ extern const char * const reg_note_name[];
(GET_CODE (INSN) == NOTE \ (GET_CODE (INSN) == NOTE \
&& NOTE_LINE_NUMBER (INSN) == NOTE_INSN_BASIC_BLOCK) && NOTE_LINE_NUMBER (INSN) == NOTE_INSN_BASIC_BLOCK)
/* Algorithm and flags for prediction. */
#define NOTE_PREDICTION_ALG(INSN) (XCINT(INSN, 4, NOTE)>>8)
#define NOTE_PREDICTION_FLAGS(INSN) (XCINT(INSN, 4, NOTE)&0xff)
#define NOTE_PREDICT(ALG,FLAGS) ((ALG<<8)+(FLAGS))
/* Variable declaration and the location of a variable. */ /* Variable declaration and the location of a variable. */
#define NOTE_VAR_LOCATION_DECL(INSN) (XCTREE (XCEXP (INSN, 4, NOTE), \ #define NOTE_VAR_LOCATION_DECL(INSN) (XCTREE (XCEXP (INSN, 4, NOTE), \
0, VAR_LOCATION)) 0, VAR_LOCATION))
......
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