diff options
author | Jay Foad <jay.foad@gmail.com> | 2011-01-17 15:18:06 +0000 |
---|---|---|
committer | Jay Foad <jay.foad@gmail.com> | 2011-01-17 15:18:06 +0000 |
commit | 0d1941a46fecefc1bbb83dc358a7092f49eb1890 (patch) | |
tree | 3750f8d1e9de61d10679028ddfb3fdec1b8d9610 /include | |
parent | 9dcb98cbe73e151490054d361834e955a80c4950 (diff) | |
download | external_llvm-0d1941a46fecefc1bbb83dc358a7092f49eb1890.zip external_llvm-0d1941a46fecefc1bbb83dc358a7092f49eb1890.tar.gz external_llvm-0d1941a46fecefc1bbb83dc358a7092f49eb1890.tar.bz2 |
Remove useless Tag enumeration.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123623 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Use.h | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/include/llvm/Use.h b/include/llvm/Use.h index 1b8f489..96e07f8 100644 --- a/include/llvm/Use.h +++ b/include/llvm/Use.h @@ -25,9 +25,7 @@ #ifndef LLVM_USE_H #define LLVM_USE_H -#include "llvm/Support/Casting.h" #include "llvm/ADT/PointerIntPair.h" -#include <cstddef> #include <iterator> namespace llvm { @@ -36,9 +34,6 @@ class Value; class User; class Use; -/// Tag - generic tag type for (at least 32 bit) pointers -enum Tag { noTag, tagOne, tagTwo, tagThree }; - // Use** is only 4-byte aligned. template<> class PointerLikeTypeTraits<Use**> { @@ -71,10 +66,10 @@ private: if (Val) removeFromList(); } - enum PrevPtrTag { zeroDigitTag = noTag - , oneDigitTag = tagOne - , stopTag = tagTwo - , fullStopTag = tagThree }; + enum PrevPtrTag { zeroDigitTag + , oneDigitTag + , stopTag + , fullStopTag }; /// Constructor Use(PrevPtrTag tag) : Val(0) { @@ -215,7 +210,7 @@ public: //===----------------------------------------------------------------------===// struct AugmentedUse : public Use { - PointerIntPair<User*, 1, Tag> ref; + PointerIntPair<User*, 1, unsigned> ref; AugmentedUse(); // not implemented }; |