diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-08 17:20:15 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-08 17:20:15 +0000 |
commit | 4e98140e3a204767471afb1615786e12dfbe55fd (patch) | |
tree | 0491ccbac07061bd023b048df559376fb0ee3c3d /gcc/genattrtab.h | |
parent | 616507035de4fef96f26b4dba4c47b8329ef8ccc (diff) | |
download | gcc-4e98140e3a204767471afb1615786e12dfbe55fd.tar.gz |
* genattrtab.c (attr_desc): Remove negative_ok and unsigned_p.
(check_attr_value, write_attr_get, write_expr_attr_cache,
find_attr, make_internal_attr): Don't reference negative_ok or
unsigned_p.
* genattrtab.h (ATTR_NEGATIVE_OK, ATTR_UNSIGNED,
ATTR_FUNC_UNITS, ATTR_BLOCKAGE): Remove.
(ATTR_STATIC): Adjust the value.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97841 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genattrtab.h')
-rw-r--r-- | gcc/genattrtab.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/genattrtab.h b/gcc/genattrtab.h index 1af43c0a191..647c3b7b631 100644 --- a/gcc/genattrtab.h +++ b/gcc/genattrtab.h @@ -51,8 +51,4 @@ extern void write_automata (void); /* Flags for make_internal_attr's `special' parameter. */ #define ATTR_NONE 0 #define ATTR_SPECIAL (1 << 0) -#define ATTR_NEGATIVE_OK (1 << 1) -#define ATTR_UNSIGNED (1 << 2) -#define ATTR_FUNC_UNITS (1 << 3) -#define ATTR_BLOCKAGE (1 << 4) -#define ATTR_STATIC (1 << 5) +#define ATTR_STATIC (1 << 1) |