diff options
author | David Blaikie <dblaikie@gmail.com> | 2017-11-03 22:32:11 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2017-11-03 22:32:11 +0000 |
commit | 1be62f0327cec94df3b60e3f2dc78384f48c6630 (patch) | |
tree | 4f103e2c24b3ba364f3c78784de5e20f6fe4f0a7 /llvm/unittests/CodeGen/MachineInstrTest.cpp | |
parent | 3fae5a6179220e06d9c14db54fd9dd99cdcc739f (diff) | |
download | bcm5719-llvm-1be62f0327cec94df3b60e3f2dc78384f48c6630.tar.gz bcm5719-llvm-1be62f0327cec94df3b60e3f2dc78384f48c6630.zip |
Move TargetFrameLowering.h to CodeGen where it's implemented
This header already includes a CodeGen header and is implemented in
lib/CodeGen, so move the header there to match.
This fixes a link error with modular codegeneration builds - where a
header and its implementation are circularly dependent and so need to be
in the same library, not split between two like this.
llvm-svn: 317379
Diffstat (limited to 'llvm/unittests/CodeGen/MachineInstrTest.cpp')
-rw-r--r-- | llvm/unittests/CodeGen/MachineInstrTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/CodeGen/MachineInstrTest.cpp b/llvm/unittests/CodeGen/MachineInstrTest.cpp index 89041e2ab22..ac2fffe8502 100644 --- a/llvm/unittests/CodeGen/MachineInstrTest.cpp +++ b/llvm/unittests/CodeGen/MachineInstrTest.cpp @@ -12,7 +12,7 @@ #include "llvm/CodeGen/MachineModuleInfo.h" #include "llvm/Support/TargetRegistry.h" #include "llvm/Support/TargetSelect.h" -#include "llvm/Target/TargetFrameLowering.h" +#include "llvm/CodeGen/TargetFrameLowering.h" #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetLowering.h" #include "llvm/Target/TargetMachine.h" |