aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineModuleInfo.cpp
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2018-03-23 23:58:19 +0000
committerDavid Blaikie <dblaikie@gmail.com>2018-03-23 23:58:19 +0000
commit6054e650ff0c56d6065b230a1e6ffe3be7f6235d (patch)
tree7c46986f46e8f213b508dce3b9cfdda66ea3cb7f /llvm/lib/CodeGen/MachineModuleInfo.cpp
parent4bb482eeac820a9e2d8505db8e93a59f4009b9cb (diff)
downloadllvm-6054e650ff0c56d6065b230a1e6ffe3be7f6235d.zip
llvm-6054e650ff0c56d6065b230a1e6ffe3be7f6235d.tar.gz
llvm-6054e650ff0c56d6065b230a1e6ffe3be7f6235d.tar.bz2
Move TargetLoweringObjectFile from CodeGen to Target to fix layering
It's implemented in Target & include from other Target headers, so the header should be in Target. llvm-svn: 328392
Diffstat (limited to 'llvm/lib/CodeGen/MachineModuleInfo.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineModuleInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineModuleInfo.cpp b/llvm/lib/CodeGen/MachineModuleInfo.cpp
index 8f0b896..054cc97 100644
--- a/llvm/lib/CodeGen/MachineModuleInfo.cpp
+++ b/llvm/lib/CodeGen/MachineModuleInfo.cpp
@@ -15,7 +15,6 @@
#include "llvm/ADT/TinyPtrVector.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/Passes.h"
-#include "llvm/CodeGen/TargetLoweringObjectFile.h"
#include "llvm/IR/BasicBlock.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/Instructions.h"
@@ -27,6 +26,7 @@
#include "llvm/Pass.h"
#include "llvm/Support/Casting.h"
#include "llvm/Support/ErrorHandling.h"
+#include "llvm/Target/TargetLoweringObjectFile.h"
#include "llvm/Target/TargetMachine.h"
#include <algorithm>
#include <cassert>