diff options
author | Matthias Braun <matze@braunis.de> | 2016-05-10 02:09:32 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2016-05-10 02:09:32 +0000 |
commit | a00b97f7806aa0fe681ff6b07299e3101f13efbc (patch) | |
tree | 745b095ddde2fd275ec7a362160aefd5d1588f64 | |
parent | 3dc16691339e0153b2d109672b0ae65eeee3c029 (diff) | |
download | bcm5719-llvm-a00b97f7806aa0fe681ff6b07299e3101f13efbc.tar.gz bcm5719-llvm-a00b97f7806aa0fe681ff6b07299e3101f13efbc.zip |
Try to appease clang-x64-ninja-win7 bot.
Looks like you need the complete definition of "X" when calling a "X
&func()" declared function even when not using the result further.
llvm-svn: 269006
-rw-r--r-- | llvm/tools/llc/llc.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/tools/llc/llc.cpp b/llvm/tools/llc/llc.cpp index 3245f8d46f4..9070adbf898 100644 --- a/llvm/tools/llc/llc.cpp +++ b/llvm/tools/llc/llc.cpp @@ -22,6 +22,7 @@ #include "llvm/CodeGen/LinkAllCodegenComponents.h" #include "llvm/CodeGen/MIRParser/MIRParser.h" #include "llvm/CodeGen/MachineFunctionPass.h" +#include "llvm/CodeGen/MachineModuleInfo.h" #include "llvm/IR/DataLayout.h" #include "llvm/IR/IRPrintingPasses.h" #include "llvm/IR/LLVMContext.h" |