From 55a07adc36099688e2ab908478a3adbd82509755 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 24 Aug 2003 13:47:36 +0000 Subject: Allow modules to have 'any' pointer size and endianness. Luckily, we had some space for extra flags, so we don't need to bump the revision number. llvm-svn: 8118 --- llvm/lib/Bytecode/Writer/Writer.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'llvm/lib/Bytecode/Writer/Writer.cpp') diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp index f8d94890f06..096dc69895c 100644 --- a/llvm/lib/Bytecode/Writer/Writer.cpp +++ b/llvm/lib/Bytecode/Writer/Writer.cpp @@ -43,11 +43,14 @@ BytecodeWriter::BytecodeWriter(std::deque &o, const Module *M) // Emit the top level CLASS block. BytecodeBlock ModuleBlock(BytecodeFormat::Module, Out); - bool isBigEndian = M->isBigEndian(); - bool hasLongPointers = M->has64BitPointers(); + bool isBigEndian = M->getEndianness() == Module::BigEndian; + bool hasLongPointers = M->getPointerSize() == Module::Pointer64; + bool hasNoEndianness = M->getEndianness() == Module::AnyEndianness; + bool hasNoPointerSize = M->getPointerSize() == Module::AnyPointerSize; // Output the version identifier... we are currently on bytecode version #2 - unsigned Version = (2 << 4) | isBigEndian | (hasLongPointers << 1); + unsigned Version = (2 << 4) | isBigEndian | (hasLongPointers << 1) | + (hasNoEndianness << 2) | (hasNoPointerSize << 3); output_vbr(Version, Out); align32(Out); -- cgit v1.2.3