summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErick Ochoa <erick.ochoa@theobroma-systems.com>2020-12-01 11:29:47 +0100
committerErick Ochoa <erick.ochoa@theobroma-systems.com>2020-12-01 11:29:47 +0100
commit3980bf1aae19f85c29e309f5e34ad0072a5106dc (patch)
tree54ba64c5ee2f868c09f35882bba79a6a9467991a
parent586e0cd8645de44fbfc678bf01e658f0c68894f3 (diff)
remove some typedefs
-rw-r--r--gcc/ipa-dfe.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/ipa-dfe.h b/gcc/ipa-dfe.h
index b21ffdc63a8..6e63062f526 100644
--- a/gcc/ipa-dfe.h
+++ b/gcc/ipa-dfe.h
@@ -118,12 +118,10 @@ protected:
typedef std::pair<tree, tree> field_tuple_t;
// list of fields for new type
- typedef std::vector<field_tuple_t> field_tuple_list_t;
typedef vec<field_tuple_t> field_tuple_list2_t;
// to deal with nested structures we need to have a stack
// of field_tuple_list_t
- typedef std::stack<field_tuple_list_t> field_tuple_list_stack_t;
typedef std::stack<field_tuple_list2_t> field_tuple_list2_stack_t;
// Which records can be modified.
@@ -136,7 +134,6 @@ protected:
// Which fields will be deleted.
field_tuple_list2_stack_t field_list2_stack;
-
// old RECORD_TYPE -> new RECORD_TYPE
reorg_record_map2_t *_reorg_map2;