diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-14 20:05:29 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-14 20:05:29 +0000 |
commit | 6000e302938c3278e4cb6660cfc449b63ddd62ea (patch) | |
tree | 266377d388dc82cd9923f187f3e97455f58d8fe1 /gcc/tree.h | |
parent | 78b246ca2bfca0e1b9cfb2a8042be53a2cc7b376 (diff) | |
download | gcc-6000e302938c3278e4cb6660cfc449b63ddd62ea.tar.gz |
* system.h: Poison PROMOTED_MODE
* integrate.c (expand_inline_function): Don't mention the
PROMOTED_MODE.
* loop.c (update_giv_derive): Same.
* tree.h (DECL_RTL): Same.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75878 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index aa967d9f5e0..8f4334f0f58 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -1346,12 +1346,7 @@ struct tree_type GTY(()) field. Always equal to TYPE_MODE (TREE_TYPE (decl)) except for a FIELD_DECL. */ #define DECL_MODE(NODE) (DECL_CHECK (NODE)->decl.mode) -/* Holds the RTL expression for the value of a variable or function. If - PROMOTED_MODE is defined, the mode of this expression may not be same - as DECL_MODE. In that case, DECL_MODE contains the mode corresponding - to the variable's data type, while the mode - of DECL_RTL is the mode actually used to contain the data. - +/* Holds the RTL expression for the value of a variable or function. This value can be evaluated lazily for functions, variables with static storage duration, and labels. */ #define DECL_RTL(NODE) \ |