[llvm-commits] CVS: llvm/lib/Bytecode/Reader/ReadArchive.cpp Reader.cpp

John Criswell criswell at cs.uiuc.edu
Mon Jun 30 17:03:53 PDT 2003


Changes in directory llvm/lib/Bytecode/Reader:

ReadArchive.cpp updated: 1.3 -> 1.4
Reader.cpp updated: 1.56 -> 1.57

---
Log message:

Merged in autoconf branch.  This provides configuration via the autoconf
system.


---
Diffs of the changes:

Index: llvm/lib/Bytecode/Reader/ReadArchive.cpp
diff -u llvm/lib/Bytecode/Reader/ReadArchive.cpp:1.3 llvm/lib/Bytecode/Reader/ReadArchive.cpp:1.4
--- llvm/lib/Bytecode/Reader/ReadArchive.cpp:1.3	Tue Apr 22 21:59:05 2003
+++ llvm/lib/Bytecode/Reader/ReadArchive.cpp	Mon Jun 30 16:58:40 2003
@@ -11,9 +11,9 @@
 
 #include "llvm/Bytecode/Reader.h"
 #include "llvm/Module.h"
-#include <sys/stat.h>
-#include <sys/mman.h>
-#include <fcntl.h>
+#include "Config/sys/stat.h"
+#include "Config/sys/mman.h"
+#include "Config/fcntl.h"
 
 namespace {
   struct ar_hdr {


Index: llvm/lib/Bytecode/Reader/Reader.cpp
diff -u llvm/lib/Bytecode/Reader/Reader.cpp:1.56 llvm/lib/Bytecode/Reader/Reader.cpp:1.57
--- llvm/lib/Bytecode/Reader/Reader.cpp:1.56	Thu May 22 13:26:48 2003
+++ llvm/lib/Bytecode/Reader/Reader.cpp	Mon Jun 30 16:58:40 2003
@@ -11,17 +11,17 @@
 //===----------------------------------------------------------------------===//
 
 #include "ReaderInternals.h"
+#include "Config/sys/mman.h"
 #include "llvm/Bytecode/Reader.h"
 #include "llvm/Bytecode/Format.h"
 #include "llvm/Module.h"
 #include "llvm/Constants.h"
 #include "llvm/iPHINode.h"
 #include "llvm/iOther.h"
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <sys/mman.h>
-#include <fcntl.h>
-#include <unistd.h>
+#include "Config/sys/types.h"
+#include "Config/sys/stat.h"
+#include "Config/fcntl.h"
+#include "Config/unistd.h"
 #include <algorithm>
 
 bool BytecodeParser::getTypeSlot(const Type *Ty, unsigned &Slot) {





More information about the llvm-commits mailing list