diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-08 02:32:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-08 02:32:52 +0000 |
commit | e00ab70c1833cbf994c169d6dd5bdd1a1528a2ca (patch) | |
tree | ea01cb106ce305660918056eac46a7638fa91108 /include/llvm/Module.h | |
parent | d659360e58fc6da08132f3d263a5aafead0d2999 (diff) |
Fix out of date comments, patch by Marco Matthies.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25143 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Module.h')
-rw-r--r-- | include/llvm/Module.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/llvm/Module.h b/include/llvm/Module.h index da2b53ddb5..d576911a3f 100644 --- a/include/llvm/Module.h +++ b/include/llvm/Module.h @@ -74,10 +74,8 @@ private: std::string ModuleID; // Human readable identifier for the module std::string TargetTriple; // Platform target triple Module compiled on - // These flags are probably not the right long-term way to handle this kind of - // target information, but it is sufficient for now. - Endianness Endian; // True if target is little endian - PointerSize PtrSize; // True if target has 32-bit pointers (false = 64-bit) + Endianness Endian; // Endianness assumed in the module + PointerSize PtrSize; // Pointer size assumed in the module friend class Constant; |