teach PointerLikeTypeTraits that all pointers to pointers may only be 4-byte aligned.
authorChris Lattner <sabre@nondot.org>
Tue, 31 Mar 2009 21:28:39 +0000 (21:28 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 31 Mar 2009 21:28:39 +0000 (21:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68147 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/PointerLikeTypeTraits.h
include/llvm/Use.h

index c5f79ccb83567605c79de167349160b7fe89628c..226dacf36118bf69b0ce185e1a2be9c902eee3b6 100644 (file)
@@ -58,6 +58,20 @@ public:
   enum { NumLowBitsAvailable = 3 };
 };
 
+// Pointers to pointers are only 4-byte aligned on 32-bit systems.
+template<typename T>
+class PointerLikeTypeTraits<T**> {
+public:
+  static inline void *getAsVoidPointer(T** P) { return P; }
+  static inline T **getFromVoidPointer(void *P) {
+    return static_cast<T**>(P);
+  }
+  enum { NumLowBitsAvailable = 2 };
+};
+  
+  
+  
+  
 // Provide PointerLikeTypeTraits for uintptr_t.
 template<>
 class PointerLikeTypeTraits<uintptr_t> {
index 53df699e703601c438c880f3313f704ac7c47f03..32cdd1b95ddb362d29f32d081bd5598bd381b364 100644 (file)
@@ -29,17 +29,6 @@ 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**> {
-public:
-  static inline void *getAsVoidPointer(Use** P) { return P; }
-  static inline Use **getFromVoidPointer(void *P) {
-    return static_cast<Use**>(P);
-  }
-  enum { NumLowBitsAvailable = 2 };
-};
-
 //===----------------------------------------------------------------------===//
 //                                  Use Class
 //===----------------------------------------------------------------------===//