Bytecode File Format Changes:
- File format version number bumped to 4
- Writer will now align nothing
- Reader now only expects alignment for version 3 or earlier
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15875 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Bytecode/Writer/WriterInternals.h b/lib/Bytecode/Writer/WriterInternals.h
index 050cad4..e496da9 100644
--- a/lib/Bytecode/Writer/WriterInternals.h
+++ b/lib/Bytecode/Writer/WriterInternals.h
@@ -92,11 +92,7 @@
/// @brief Signed 32-bit variable bit rate output primitive.
inline void output_vbr(int i);
- /// Emit the minimal number of bytes that will bring us to 32 bit alignment.
- /// @brief 32-bit alignment output primitive
- inline void align32();
-
- inline void output(const std::string &s, bool Aligned = true);
+ inline void output(const std::string &s );
inline void output_data(const void *Ptr, const void *End);