diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-24 13:48:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-24 13:48:48 +0000 |
commit | 8068e0cd1749f7575815bafd478645bcc51138b2 (patch) | |
tree | 85a8b9b03a09649ba1c2f5816be87f230968d8e4 /llvm/lib/VMCore/Module.cpp | |
parent | 55a07adc36099688e2ab908478a3adbd82509755 (diff) | |
download | bcm5719-llvm-8068e0cd1749f7575815bafd478645bcc51138b2.tar.gz bcm5719-llvm-8068e0cd1749f7575815bafd478645bcc51138b2.zip |
Support new 'any' support for pointer size and endianness
llvm-svn: 8119
Diffstat (limited to 'llvm/lib/VMCore/Module.cpp')
-rw-r--r-- | llvm/lib/VMCore/Module.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Module.cpp b/llvm/lib/VMCore/Module.cpp index abc4654da1d..8b61606dcad 100644 --- a/llvm/lib/VMCore/Module.cpp +++ b/llvm/lib/VMCore/Module.cpp @@ -53,7 +53,7 @@ struct GlobalValueRefMap { Module::Module(const std::string &MID) - : ModuleID(MID), Endian(BigEndian), PtrSize(Pointer64) { + : ModuleID(MID), Endian(AnyEndianness), PtrSize(AnyPointerSize) { FunctionList.setItemParent(this); FunctionList.setParent(this); GlobalList.setItemParent(this); |