diff options
| author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-13 15:11:25 +0000 |
|---|---|---|
| committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-13 15:11:25 +0000 |
| commit | c68d013087944fffd96d8e357102a044e885d08f (patch) | |
| tree | 855710bba5c0a14de810e3b6424e84c5cc627c6d | |
| parent | 074073feecadb0fb42cb5d3934ed754c7d1d1cd7 (diff) | |
| download | ppe42-gcc-c68d013087944fffd96d8e357102a044e885d08f.tar.gz ppe42-gcc-c68d013087944fffd96d8e357102a044e885d08f.zip | |
* rtl.h (NOTE_PREDICTION_ALG, NOTE_PREDICTION_FLAGS,
NOTE_PREDICT): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98088 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 3 | ||||
| -rw-r--r-- | gcc/rtl.h | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 32f79fa45c8..4da851e1853 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -8,6 +8,9 @@ * 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> * configure.ac (gcc_AC_CHECK_DECLS): Add vsnprintf. diff --git a/gcc/rtl.h b/gcc/rtl.h index 6c25944d538..822e7f724be 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -773,11 +773,6 @@ extern const char * const reg_note_name[]; (GET_CODE (INSN) == NOTE \ && 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. */ #define NOTE_VAR_LOCATION_DECL(INSN) (XCTREE (XCEXP (INSN, 4, NOTE), \ 0, VAR_LOCATION)) |

