diff options
| author | Nico Weber <nicolasweber@gmx.de> | 2019-10-10 18:20:16 +0000 |
|---|---|---|
| committer | Nico Weber <nicolasweber@gmx.de> | 2019-10-10 18:20:16 +0000 |
| commit | cae2662104fe21932dcca7ddcfb4b8705c325168 (patch) | |
| tree | 3d7e9232bd99c9da8a0b3d996d310d35a37b3cf3 | |
| parent | b895f778e2d8723f0b934accd4b83d8d9e8da2c0 (diff) | |
| download | bcm5719-llvm-cae2662104fe21932dcca7ddcfb4b8705c325168.tar.gz bcm5719-llvm-cae2662104fe21932dcca7ddcfb4b8705c325168.zip | |
Fix Windows build after r374381
llvm-svn: 374413
| -rw-r--r-- | llvm/lib/DebugInfo/GSYM/GsymCreator.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/DebugInfo/GSYM/GsymReader.cpp | 7 |
2 files changed, 2 insertions, 7 deletions
diff --git a/llvm/lib/DebugInfo/GSYM/GsymCreator.cpp b/llvm/lib/DebugInfo/GSYM/GsymCreator.cpp index c9dd9a95e96..f371426f201 100644 --- a/llvm/lib/DebugInfo/GSYM/GsymCreator.cpp +++ b/llvm/lib/DebugInfo/GSYM/GsymCreator.cpp @@ -14,6 +14,8 @@ #include <algorithm> #include <cassert> +#include <functional> +#include <vector> using namespace llvm; using namespace gsym; diff --git a/llvm/lib/DebugInfo/GSYM/GsymReader.cpp b/llvm/lib/DebugInfo/GSYM/GsymReader.cpp index dc95fe2f497..1b448cf80b7 100644 --- a/llvm/lib/DebugInfo/GSYM/GsymReader.cpp +++ b/llvm/lib/DebugInfo/GSYM/GsymReader.cpp @@ -10,16 +10,9 @@ #include "llvm/DebugInfo/GSYM/GsymReader.h" #include <assert.h> -#include <fcntl.h> #include <inttypes.h> #include <stdio.h> #include <stdlib.h> -#include <sys/stat.h> -#include <sys/types.h> - -#include <fstream> -#include <functional> -#include <vector> #include "llvm/DebugInfo/GSYM/GsymCreator.h" #include "llvm/DebugInfo/GSYM/InlineInfo.h" |

