[Analysis][NFC] Include LoopInfoImpl only in source file (#187459)

There's no need to include the full LoopInfo implementation in every
source file that uses LoopInfo.

Pull Request: https://github.com/llvm/llvm-project/pull/187459
This commit is contained in:
Alexis Engelke 2026-03-19 11:10:29 +01:00 committed by GitHub
parent 4262045ba9
commit 333ac33be6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,7 @@
#include "llvm/IR/PassManager.h"
#include "llvm/Pass.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Support/GenericLoopInfoImpl.h"
#include "llvm/Support/GenericLoopInfo.h"
#include <optional>
#include <utility>

View File

@ -38,6 +38,7 @@
#include "llvm/InitializePasses.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Support/GenericLoopInfoImpl.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;