Remove the AnyPointerSize and AnyEndianness enumerators, which were left from
authorDmitri Gribenko <gribozavr@gmail.com>
Fri, 20 Dec 2013 03:11:07 +0000 (03:11 +0000)
committerDmitri Gribenko <gribozavr@gmail.com>
Fri, 20 Dec 2013 03:11:07 +0000 (03:11 +0000)
LLVM's early days.  Today LLVM IR is always target-specific.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197772 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/IR/Module.h

index b30a9a3d1abf2bce9ea0ebfef93b92e90a187920..fa7767a526cc05449a357d1f5d0bfa4031ac3672 100644 (file)
@@ -143,10 +143,10 @@ public:
   typedef NamedMDListType::const_iterator const_named_metadata_iterator;
 
   /// An enumeration for describing the endianess of the target machine.
-  enum Endianness  { AnyEndianness, LittleEndian, BigEndian };
+  enum Endianness { LittleEndian, BigEndian };
 
   /// An enumeration for describing the size of a pointer on the target machine.
-  enum PointerSize { AnyPointerSize, Pointer32, Pointer64 };
+  enum PointerSize { Pointer32, Pointer64 };
 
   /// This enumeration defines the supported behaviors of module flags.
   enum ModFlagBehavior {