From: Reid Spencer Date: Fri, 26 Jan 2007 08:09:01 +0000 (+0000) Subject: For PR761: X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=4de76f4884731aa3333c498b1ab4349cf4b7e29a;p=oota-llvm.git For PR761: BCReader no longer has a header that contains the endinanness and pointer size. It's been replaced by datalayout field. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33528 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Bytecode/BytecodeHandler.h b/include/llvm/Bytecode/BytecodeHandler.h index 1d95db5daff..a3e5bb7f1f3 100644 --- a/include/llvm/Bytecode/BytecodeHandler.h +++ b/include/llvm/Bytecode/BytecodeHandler.h @@ -96,9 +96,7 @@ public: /// read. /// @brief Handle the bytecode prolog virtual void handleVersionInfo( - unsigned char RevisionNum, ///< Byte code revision number - Module::Endianness Endianness, ///< Endianness indicator - Module::PointerSize PointerSize ///< PointerSize indicator + unsigned char RevisionNum ///< Byte code revision number ) {} /// This method is called at the start of a module globals block which