aboutsummaryrefslogtreecommitdiff
path: root/llvm/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
commitf799efdedcb6257da6823ff8c427ba502edd2bc4 (patch)
tree517b9d7f4e656cb65e0466b69662041d2d1b0935 /llvm/lib/Transforms/Utils/Local.cpp
parent693344b505dbf06ee72f48d0dc4c135eec80e96b (diff)
downloadllvm-f799efdedcb6257da6823ff8c427ba502edd2bc4.zip
llvm-f799efdedcb6257da6823ff8c427ba502edd2bc4.tar.gz
llvm-f799efdedcb6257da6823ff8c427ba502edd2bc4.tar.bz2
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. llvm-svn: 159414
Diffstat (limited to 'llvm/lib/Transforms/Utils/Local.cpp')
-rw-r--r--llvm/lib/Transforms/Utils/Local.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/Local.cpp b/llvm/lib/Transforms/Utils/Local.cpp
index 3bcc9f09..d836f3b 100644
--- a/llvm/lib/Transforms/Utils/Local.cpp
+++ b/llvm/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"