aboutsummaryrefslogtreecommitdiff
path: root/gcc/genattrtab.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-04-08 17:20:15 +0000
committerKazu Hirata <kazu@cs.umass.edu>2005-04-08 17:20:15 +0000
commit162fbd4bfc570d5f34e5655dffba24b2cb17a232 (patch)
tree0491ccbac07061bd023b048df559376fb0ee3c3d /gcc/genattrtab.h
parent83b750a1ceb714ec3799574505121cbc905169d6 (diff)
* 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: https://gcc.gnu.org/svn/gcc/trunk@97841 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genattrtab.h')
-rw-r--r--gcc/genattrtab.h6
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)