summaryrefslogtreecommitdiff
path: root/include/llvm/IR/Module.h
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2013-12-20 03:11:07 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2013-12-20 03:11:07 +0000
commite899f2516316aa432d9ce553a63fdc7e0da7f3a8 (patch)
tree6b976d1d34aaac3b4bbd5fa242c3ca6f659869b2 /include/llvm/IR/Module.h
parent8d6a09de7df1836e386678da49134db4fb847f2e (diff)
downloadllvm-e899f2516316aa432d9ce553a63fdc7e0da7f3a8.tar.gz
llvm-e899f2516316aa432d9ce553a63fdc7e0da7f3a8.tar.bz2
llvm-e899f2516316aa432d9ce553a63fdc7e0da7f3a8.tar.xz
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
Diffstat (limited to 'include/llvm/IR/Module.h')
-rw-r--r--include/llvm/IR/Module.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/IR/Module.h b/include/llvm/IR/Module.h
index b30a9a3d1a..fa7767a526 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 {