whoops, don't accidentally lose variable names
[oota-llvm.git] / lib / Archive / ArchiveReader.cpp
index 450fd04587601bac156d6b3fa2b8898c6e62d693..be023538e18e5813de740b212c3ca3413d7a78f9 100644 (file)
@@ -1,4 +1,4 @@
-//===- ReadArchive.cpp - Code to read LLVM bytecode from .a files ---------===//
+//===- ArchiveReader.cpp - Code to read LLVM bytecode from .a files -------===//
 //
 // This file implements the ReadArchiveFile interface, which allows a linker to
 // read all of the LLVM bytecode files contained in a .a file.  This file
@@ -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 {
@@ -130,7 +130,7 @@ static bool ReadArchiveBuffer(const std::string &Filename,
 }
 
 
-// ReadArchiveFile - Read bytecode files from the specfied .a file, returning
+// ReadArchiveFile - Read bytecode files from the specified .a file, returning
 // true on error, or false on success.  This does not support reading files from
 // standard input.
 //