aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-object-size.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/tree-object-size.h')
-rw-r--r--gcc/tree-object-size.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/tree-object-size.h b/gcc/tree-object-size.h
index b2d6a58..f4f438c 100644
--- a/gcc/tree-object-size.h
+++ b/gcc/tree-object-size.h
@@ -20,6 +20,16 @@ along with GCC; see the file COPYING3. If not see
#ifndef GCC_TREE_OBJECT_SIZE_H
#define GCC_TREE_OBJECT_SIZE_H
+/* Bits in object_size_type. */
+
+enum
+{
+ OST_SUBOBJECT = 1,
+ OST_MINIMUM = 2,
+ OST_DYNAMIC = 4,
+ OST_END = 8,
+};
+
extern void init_object_sizes (void);
extern void fini_object_sizes (void);
extern bool compute_builtin_object_size (tree, int, tree *);