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/lib/CodeGen/ShrinkWrap.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/lib/CodeGen/ShrinkWrap.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ShrinkWrap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/ShrinkWrap.cpp b/llvm/lib/CodeGen/ShrinkWrap.cpp index 5fb6afee88a..1c6fb1ce785 100644 --- a/llvm/lib/CodeGen/ShrinkWrap.cpp +++ b/llvm/lib/CodeGen/ShrinkWrap.cpp @@ -73,7 +73,7 @@ #include "llvm/Support/Debug.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/raw_ostream.h" -#include "llvm/Target/TargetFrameLowering.h" +#include "llvm/CodeGen/TargetFrameLowering.h" #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetRegisterInfo.h" |