diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2015-03-23 18:23:08 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2015-03-23 18:23:08 +0000 |
commit | de9f090e10ab5027d4e91f6bd00e111b532f4792 (patch) | |
tree | 21de8eeb2b7bb347f4bf4a8bf8802d30b079f750 /llvm | |
parent | 4073ce8d04c66e5d98627911ca24d8c93ac8dac8 (diff) | |
download | bcm5719-llvm-de9f090e10ab5027d4e91f6bd00e111b532f4792.tar.gz bcm5719-llvm-de9f090e10ab5027d4e91f6bd00e111b532f4792.zip |
More missing includes only visible to MSVC.
NFC.
llvm-svn: 232981
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/IR/PassManager.h | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/LivePhysRegs.cpp | 1 | ||||
-rw-r--r-- | llvm/utils/KillTheDoctor/KillTheDoctor.cpp | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/llvm/include/llvm/IR/PassManager.h b/llvm/include/llvm/IR/PassManager.h index 513bbe01da0..3c24e7231a1 100644 --- a/llvm/include/llvm/IR/PassManager.h +++ b/llvm/include/llvm/IR/PassManager.h @@ -46,6 +46,7 @@ #include "llvm/IR/PassManagerInternal.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" +#include "llvm/Support/raw_ostream.h" #include "llvm/Support/type_traits.h" #include <list> #include <memory> diff --git a/llvm/lib/CodeGen/LivePhysRegs.cpp b/llvm/lib/CodeGen/LivePhysRegs.cpp index 7efd941322b..89567eff517 100644 --- a/llvm/lib/CodeGen/LivePhysRegs.cpp +++ b/llvm/lib/CodeGen/LivePhysRegs.cpp @@ -16,6 +16,7 @@ #include "llvm/CodeGen/LivePhysRegs.h" #include "llvm/CodeGen/MachineInstrBundle.h" #include "llvm/Support/Debug.h" +#include "llvm/Support/raw_ostream.h" using namespace llvm; diff --git a/llvm/utils/KillTheDoctor/KillTheDoctor.cpp b/llvm/utils/KillTheDoctor/KillTheDoctor.cpp index 111bad20958..fae3b1a8b9d 100644 --- a/llvm/utils/KillTheDoctor/KillTheDoctor.cpp +++ b/llvm/utils/KillTheDoctor/KillTheDoctor.cpp @@ -38,6 +38,7 @@ #include "llvm/ADT/Twine.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/ManagedStatic.h" +#include "llvm/Support/Path.h" #include "llvm/Support/PrettyStackTrace.h" #include "llvm/Support/Signals.h" #include "llvm/Support/WindowsError.h" |