diff options
author | David Blaikie <dblaikie@gmail.com> | 2018-03-29 22:42:08 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2018-03-29 22:42:08 +0000 |
commit | f423062aff913a7f7867de74e7c984b43124b300 (patch) | |
tree | 4bd40d07ca5bdd68cd32f528c2cfa8ffa4ac47ea /llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp | |
parent | f001ead490ce0fdf91987351240af5db75d6f8df (diff) | |
download | bcm5719-llvm-f423062aff913a7f7867de74e7c984b43124b300.tar.gz bcm5719-llvm-f423062aff913a7f7867de74e7c984b43124b300.zip |
Fix some layering in StripNonLineTableDebugInfo, moving its declaration from IPO.h to Utils.h to match its implementation
llvm-svn: 328844
Diffstat (limited to 'llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp b/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp index cd0378e0140..8956a089a99 100644 --- a/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp +++ b/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp @@ -9,7 +9,7 @@ #include "llvm/IR/DebugInfo.h" #include "llvm/Pass.h" -#include "llvm/Transforms/IPO.h" +#include "llvm/Transforms/Utils.h" using namespace llvm; namespace { |