aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJulia Koval <julia.koval@intel.com>2017-11-30 13:17:16 +0100
committerJulia Koval <jkoval@gcc.gnu.org>2017-11-30 13:17:16 +0100
commitb0da403432622fbca987e23547af5b882c9ae87f (patch)
treea184e866e871bd89e559b32c8d121cd8bf5a6225 /gcc
parent89b1427f8693699d64050cc4daf5626f6b96b96a (diff)
downloadgcc-b0da403432622fbca987e23547af5b882c9ae87f.zip
gcc-b0da403432622fbca987e23547af5b882c9ae87f.tar.gz
gcc-b0da403432622fbca987e23547af5b882c9ae87f.tar.bz2
Remove inv_list.
gcc/c-family/ * c-common.h (inv_list): Remove. From-SVN: r255270
Diffstat (limited to 'gcc')
-rw-r--r--gcc/c-family/ChangeLog4
-rw-r--r--gcc/c-family/c-common.h11
2 files changed, 4 insertions, 11 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index abbcb90..e26b31f 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,3 +1,7 @@
+2017-11-30 Julia Koval <julia.koval@intel.com>
+
+ * c-common.h (inv_list): Remove.
+
2017-11-28 Jakub Jelinek <jakub@redhat.com>
PR sanitizer/81275
diff --git a/gcc/c-family/c-common.h b/gcc/c-family/c-common.h
index 7561531..27b1de9 100644
--- a/gcc/c-family/c-common.h
+++ b/gcc/c-family/c-common.h
@@ -1358,17 +1358,6 @@ enum stv_conv {
extern enum stv_conv scalar_to_vector (location_t loc, enum tree_code code,
tree op0, tree op1, bool);
-/* This structure holds all the scalar values and its appropriate variable
- replacment. It is mainly used by the function that pulls all the invariant
- parts that should be executed only once, which comes with array notation
- expressions. */
-struct inv_list
-{
- vec<tree, va_gc> *list_values;
- vec<tree, va_gc> *replacement;
- vec<enum tree_code, va_gc> *additional_tcodes;
-};
-
extern tree find_inv_trees (tree *, int *, void *);
extern tree replace_inv_trees (tree *, int *, void *);