summaryrefslogtreecommitdiff
path: root/bolt/include
diff options
context:
space:
mode:
authorChristian Ulmann <christian.ulmann@nextsilicon.com>2023-04-24 06:06:45 +0000
committerChristian Ulmann <christian.ulmann@nextsilicon.com>2023-04-24 06:07:05 +0000
commitf5425c128a30b32d39e0bc133e8e8dbad6066620 (patch)
tree263a11b042a3276679c5a3399dacd86cf9b9678c /bolt/include
parent9616fd1a7dbe215dd8e71cf086fc955388ec654d (diff)
downloadllvm-f5425c128a30b32d39e0bc133e8e8dbad6066620.tar.gz
[LoopInfo] Move generic LoopInfo into own files
This commit splits the generic part of `LoopInfo` into separate files. These new `GenericLoopInfo` files are located in `llvm/Support` to be inline with `GenericDomTree`. Furthermore, this change ensures that MLIR's Bazel build does not have to link against `LLVMAnalysis` just to use these template headers. Depends on D148219 Reviewed By: ftynse Differential Revision: https://reviews.llvm.org/D148235
Diffstat (limited to 'bolt/include')
-rw-r--r--bolt/include/bolt/Core/BinaryLoop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bolt/include/bolt/Core/BinaryLoop.h b/bolt/include/bolt/Core/BinaryLoop.h
index 2416097a7812..72dce77df8c1 100644
--- a/bolt/include/bolt/Core/BinaryLoop.h
+++ b/bolt/include/bolt/Core/BinaryLoop.h
@@ -15,7 +15,7 @@
#ifndef BOLT_CORE_BINARY_LOOP_H
#define BOLT_CORE_BINARY_LOOP_H
-#include "llvm/Analysis/LoopInfoImpl.h"
+#include "llvm/Support/GenericLoopInfoImpl.h"
namespace llvm {
namespace bolt {