aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Writer/Writer.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-24 13:47:36 +0000
committerChris Lattner <sabre@nondot.org>2003-08-24 13:47:36 +0000
commitd445c6b64a64ba61523b3d225463dce070d33212 (patch)
treebb56b33b20d0a62dbf4f34eb4bedbc5773446e7d /lib/Bytecode/Writer/Writer.cpp
parenta7a35a831bf7aaa63287824645bb71937652e1b9 (diff)
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8118 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Writer/Writer.cpp')
-rw-r--r--lib/Bytecode/Writer/Writer.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/Bytecode/Writer/Writer.cpp b/lib/Bytecode/Writer/Writer.cpp
index f8d94890f0..096dc69895 100644
--- a/lib/Bytecode/Writer/Writer.cpp
+++ b/lib/Bytecode/Writer/Writer.cpp
@@ -43,11 +43,14 @@ BytecodeWriter::BytecodeWriter(std::deque<unsigned char> &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);