From: Dmitri Gribenko Date: Fri, 20 Dec 2013 03:11:07 +0000 (+0000) Subject: Remove the AnyPointerSize and AnyEndianness enumerators, which were left from X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=e899f2516316aa432d9ce553a63fdc7e0da7f3a8;p=oota-llvm.git Remove the AnyPointerSize and AnyEndianness enumerators, which were left from 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 --- diff --git a/include/llvm/IR/Module.h b/include/llvm/IR/Module.h index b30a9a3d1ab..fa7767a526c 100644 --- a/include/llvm/IR/Module.h +++ b/include/llvm/IR/Module.h @@ -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 {