diff options
Diffstat (limited to 'include/llvm/Bitcode/Archive.h')
| -rw-r--r-- | include/llvm/Bitcode/Archive.h | 13 | 
1 files changed, 7 insertions, 6 deletions
diff --git a/include/llvm/Bitcode/Archive.h b/include/llvm/Bitcode/Archive.h index 934e764b6587..c3c07d8588a3 100644 --- a/include/llvm/Bitcode/Archive.h +++ b/include/llvm/Bitcode/Archive.h @@ -19,12 +19,13 @@  #include "llvm/ADT/ilist.h"  #include "llvm/ADT/ilist_node.h" -#include "llvm/System/Path.h" +#include "llvm/Support/Path.h"  #include <map>  #include <set>  namespace llvm {    class MemoryBuffer; +  class raw_ostream;  // Forward declare classes  class Module;              // From VMCore @@ -82,7 +83,7 @@ class ArchiveMember : public ilist_node<ArchiveMember> {      unsigned getGroup() const            { return info.getGroup(); }      /// The "mode" specifies the access permissions for the file per Unix -    /// security. This may not have any applicabiity on non-Unix systems but is +    /// security. This may not have any applicability on non-Unix systems but is      /// a required component of the "ar" file format.      /// @brief Get the permission mode associated with this archive member.      unsigned getMode() const             { return info.getMode(); } @@ -144,7 +145,7 @@ class ArchiveMember : public ilist_node<ArchiveMember> {      /// allowed that doesn't have this restriction. This method determines if      /// that "long format" is used for this member.      /// @returns true iff the file name uses the long form -    /// @brief Determin if the member has a long file name +    /// @brief Determine if the member has a long file name      bool hasLongFilename() const { return flags&HasLongFilenameFlag; }      /// This method returns the status info (like Unix stat(2)) for the archive @@ -402,7 +403,7 @@ class Archive {      /// bitcode archive.  It first makes sure the symbol table has been loaded      /// and has a non-zero size.  If it does, then it is an archive.  If not,      /// then it tries to load all the bitcode modules of the archive.  Finally, -    /// it returns whether it was successfull. +    /// it returns whether it was successful.      /// @returns true if the archive is a proper llvm bitcode archive      /// @brief Determine whether the archive is a proper llvm bitcode archive.      bool isBitcodeArchive(); @@ -482,7 +483,7 @@ class Archive {      bool loadSymbolTable(std::string* ErrMessage);      /// @brief Write the symbol table to an ofstream. -    void writeSymbolTable(std::ofstream& ARFile); +    void writeSymbolTable(raw_ostream& ARFile);      /// Writes one ArchiveMember to an ofstream. If an error occurs, returns      /// false, otherwise true. If an error occurs and error is non-null then @@ -491,7 +492,7 @@ class Archive {      /// @returns true Writing member failed, \p error set to error message      bool writeMember(        const ArchiveMember& member, ///< The member to be written -      std::ofstream& ARFile,       ///< The file to write member onto +      raw_ostream& ARFile,       ///< The file to write member onto        bool CreateSymbolTable,      ///< Should symbol table be created?        bool TruncateNames,          ///< Should names be truncated to 11 chars?        bool ShouldCompress,         ///< Should the member be compressed?  | 
