diff options
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index 16004e2c107..5617dc145d1 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -27,7 +27,6 @@ along with GCC; see the file COPYING3. If not see #include "input.h" #include "real.h" #include "vec.h" -#include "vecir.h" #include "fixed-value.h" #include "alias.h" #include "hashtab.h" @@ -239,7 +238,7 @@ struct GTY(()) object_block { !SYMBOL_REF_ANCHOR_P (X) SYMBOL_REF_BLOCK (X) == [address of this structure] SYMBOL_REF_BLOCK_OFFSET (X) >= 0. */ - VEC(rtx,gc) *objects; + vec<rtx, va_gc> *objects; /* All the anchor SYMBOL_REFs used to address these objects, sorted in order of increasing offset, and then increasing TLS model. @@ -249,7 +248,7 @@ struct GTY(()) object_block { SYMBOL_REF_ANCHOR_P (X) SYMBOL_REF_BLOCK (X) == [address of this structure] SYMBOL_REF_BLOCK_OFFSET (X) >= 0. */ - VEC(rtx,gc) *anchors; + vec<rtx, va_gc> *anchors; }; /* RTL expression ("rtx"). */ |