diff options
-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" |