X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FSupport%2FPointerLikeTypeTraits.h;h=b0edd3bd09f99d8049cf27b9d21a5d8f82366c85;hb=0fd38069cb6699ce21eb159f22d3f23c012c9e81;hp=c5f79ccb83567605c79de167349160b7fe89628c;hpb=911c8b21dac9678e458798b150cebff196a6fc7a;p=oota-llvm.git diff --git a/include/llvm/Support/PointerLikeTypeTraits.h b/include/llvm/Support/PointerLikeTypeTraits.h index c5f79ccb835..b0edd3bd09f 100644 --- a/include/llvm/Support/PointerLikeTypeTraits.h +++ b/include/llvm/Support/PointerLikeTypeTraits.h @@ -44,7 +44,7 @@ public: /// /// All clients should use assertions to do a run-time check to ensure that /// this is actually true. - enum { NumLowBitsAvailable = 3 }; + enum { NumLowBitsAvailable = 2 }; }; // Provide PointerLikeTypeTraits for const pointers. @@ -55,7 +55,7 @@ public: static inline const T *getFromVoidPointer(const void *P) { return static_cast(P); } - enum { NumLowBitsAvailable = 3 }; + enum { NumLowBitsAvailable = 2 }; }; // Provide PointerLikeTypeTraits for uintptr_t.