diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-06-28 00:05:13 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-06-28 00:05:13 +0000 |
commit | e38859dc8e8c89a8776da7384137097a7854339b (patch) | |
tree | bbace121205b096817265c42dead7c6e3a2a8d26 /llvm/lib/Transforms/Utils/InlineFunction.cpp | |
parent | fd3a5e33d50dd4ef0b6a2f8ab8cd03554747cc27 (diff) | |
download | bcm5719-llvm-e38859dc8e8c89a8776da7384137097a7854339b.tar.gz bcm5719-llvm-e38859dc8e8c89a8776da7384137097a7854339b.zip |
Move lib/Analysis/DebugInfo.cpp to lib/VMCore/DebugInfo.cpp and
include/llvm/Analysis/DebugInfo.h to include/llvm/DebugInfo.h.
The reasoning is because the DebugInfo module is simply an interface to the
debug info MDNodes and has nothing to do with analysis.
llvm-svn: 159312
Diffstat (limited to 'llvm/lib/Transforms/Utils/InlineFunction.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/InlineFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/InlineFunction.cpp b/llvm/lib/Transforms/Utils/InlineFunction.cpp index 9f8043d6fa8..7a2940f8a6e 100644 --- a/llvm/lib/Transforms/Utils/InlineFunction.cpp +++ b/llvm/lib/Transforms/Utils/InlineFunction.cpp @@ -14,6 +14,7 @@ #include "llvm/Transforms/Utils/Cloning.h" #include "llvm/Constants.h" +#include "llvm/DebugInfo.h" #include "llvm/DerivedTypes.h" #include "llvm/Module.h" #include "llvm/Instructions.h" @@ -21,7 +22,6 @@ #include "llvm/Intrinsics.h" #include "llvm/Attributes.h" #include "llvm/Analysis/CallGraph.h" -#include "llvm/Analysis/DebugInfo.h" #include "llvm/Analysis/InstructionSimplify.h" #include "llvm/Target/TargetData.h" #include "llvm/Transforms/Utils/Local.h" |