[llvm] r374413 - Fix Windows build after r374381

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 10 11:20:16 PDT 2019


Author: nico
Date: Thu Oct 10 11:20:16 2019
New Revision: 374413

URL: http://llvm.org/viewvc/llvm-project?rev=374413&view=rev
Log:
Fix Windows build after r374381

Modified:
    llvm/trunk/lib/DebugInfo/GSYM/GsymCreator.cpp
    llvm/trunk/lib/DebugInfo/GSYM/GsymReader.cpp

Modified: llvm/trunk/lib/DebugInfo/GSYM/GsymCreator.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/GSYM/GsymCreator.cpp?rev=374413&r1=374412&r2=374413&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/GSYM/GsymCreator.cpp (original)
+++ llvm/trunk/lib/DebugInfo/GSYM/GsymCreator.cpp Thu Oct 10 11:20:16 2019
@@ -14,6 +14,8 @@
 
 #include <algorithm>
 #include <cassert>
+#include <functional>
+#include <vector>
 
 using namespace llvm;
 using namespace gsym;

Modified: llvm/trunk/lib/DebugInfo/GSYM/GsymReader.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/GSYM/GsymReader.cpp?rev=374413&r1=374412&r2=374413&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/GSYM/GsymReader.cpp (original)
+++ llvm/trunk/lib/DebugInfo/GSYM/GsymReader.cpp Thu Oct 10 11:20:16 2019
@@ -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"




More information about the llvm-commits mailing list