aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKewen Lin <linkw@linux.ibm.com>2021-05-20 05:16:19 -0500
committerKewen Lin <linkw@linux.ibm.com>2021-05-20 05:34:37 -0500
commit928e4ff1aea45165efbdc8ba6e409b191c2dde6c (patch)
treef8edd413bf17ea0d7e15658680caa42dd25542d7 /gcc
parent507359e1d4d18614eb9679043995edf0675b6ff5 (diff)
downloadgcc-928e4ff1aea45165efbdc8ba6e409b191c2dde6c.zip
gcc-928e4ff1aea45165efbdc8ba6e409b191c2dde6c.tar.gz
gcc-928e4ff1aea45165efbdc8ba6e409b191c2dde6c.tar.bz2
arm: Fix build failure by adding includes
Commit r12-939 missed to add the required include files for the newly used type loop_vec_info. This patch is to add the include file "tree-vectorizer.h" which defines loop_vec_info and its required include file "cfgloop.h". gcc/ChangeLog: * config/arm/arm.c: Include head files tree-vectorizer.h and cfgloop.h.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/arm/arm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c
index caf4e56..9377aae 100644
--- a/gcc/config/arm/arm.c
+++ b/gcc/config/arm/arm.c
@@ -32,6 +32,7 @@
#include "tree.h"
#include "memmodel.h"
#include "cfghooks.h"
+#include "cfgloop.h"
#include "df.h"
#include "tm_p.h"
#include "stringpool.h"
@@ -69,6 +70,7 @@
#include "gimplify.h"
#include "gimple.h"
#include "selftest.h"
+#include "tree-vectorizer.h"
/* This file should be included last. */
#include "target-def.h"