summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/Local.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-06-29 08:32:07 +0000
committerBill Wendling <isanbard@gmail.com>2012-06-29 08:32:07 +0000
commit16eeb6f5ebc978b03745177b9ac82684ab1c6932 (patch)
tree9ff2f80e3dd322d424a706d7d83950446da85d78 /lib/Transforms/Utils/Local.cpp
parent3e4b3b9043b1ced24e07d8d1174feeee06c6912e (diff)
downloadllvm-16eeb6f5ebc978b03745177b9ac82684ab1c6932.tar.gz
llvm-16eeb6f5ebc978b03745177b9ac82684ab1c6932.tar.bz2
llvm-16eeb6f5ebc978b03745177b9ac82684ab1c6932.tar.xz
The DIBuilder class is just a wrapper around debug info creation
(a.k.a. MDNodes). The module doesn't belong in Analysis. Move it to the VMCore instead. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159414 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/Local.cpp')
-rw-r--r--lib/Transforms/Utils/Local.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/Local.cpp b/lib/Transforms/Utils/Local.cpp
index 3bcc9f09a7..d836f3b55f 100644
--- a/lib/Transforms/Utils/Local.cpp
+++ b/lib/Transforms/Utils/Local.cpp
@@ -16,6 +16,7 @@
#include "llvm/Constants.h"
#include "llvm/DebugInfo.h"
#include "llvm/DerivedTypes.h"
+#include "llvm/DIBuilder.h"
#include "llvm/GlobalAlias.h"
#include "llvm/GlobalVariable.h"
#include "llvm/Instructions.h"
@@ -25,7 +26,6 @@
#include "llvm/Operator.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallPtrSet.h"
-#include "llvm/Analysis/DIBuilder.h"
#include "llvm/Analysis/Dominators.h"
#include "llvm/Analysis/InstructionSimplify.h"
#include "llvm/Analysis/MemoryBuiltins.h"