Fix out of date comments, patch by Marco Matthies.
authorChris Lattner <sabre@nondot.org>
Sun, 8 Jan 2006 02:32:52 +0000 (02:32 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 8 Jan 2006 02:32:52 +0000 (02:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25143 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Module.h

index da2b53ddb5b48a64351e24cd65a3fab3d3851f9e..d576911a3f298091f5f03f77c5b2ab691368ea19 100644 (file)
@@ -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;