diff options
author | Philip Reames <listmail@philipreames.com> | 2018-03-29 19:22:12 +0000 |
---|---|---|
committer | Philip Reames <listmail@philipreames.com> | 2018-03-29 19:22:12 +0000 |
commit | e4b728e82b1f7da763f128150c6626787c9e6744 (patch) | |
tree | 96982ccd5d1b78effb3f735547e2d98603a99c03 /llvm/lib/Analysis/MustExecute.cpp | |
parent | 10d8b8557009056bbcbfc9dd181698e58ba07a13 (diff) | |
download | bcm5719-llvm-e4b728e82b1f7da763f128150c6626787c9e6744.tar.gz bcm5719-llvm-e4b728e82b1f7da763f128150c6626787c9e6744.zip |
Fix an accidental circular dependence
llvm-svn: 328816
Diffstat (limited to 'llvm/lib/Analysis/MustExecute.cpp')
-rw-r--r-- | llvm/lib/Analysis/MustExecute.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/MustExecute.cpp b/llvm/lib/Analysis/MustExecute.cpp index 437946a6ebb..c044e28c6ba 100644 --- a/llvm/lib/Analysis/MustExecute.cpp +++ b/llvm/lib/Analysis/MustExecute.cpp @@ -7,6 +7,7 @@ // //===----------------------------------------------------------------------===// +#include "llvm/Analysis/MustExecute.h" #include "llvm/Analysis/InstructionSimplify.h" #include "llvm/Analysis/LoopInfo.h" #include "llvm/Analysis/Passes.h" @@ -19,7 +20,6 @@ #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/FormattedStream.h" #include "llvm/Support/raw_ostream.h" -#include "llvm/Transforms/Utils/LoopUtils.h" using namespace llvm; /// Computes loop safety information, checks loop body & header |