[llvm-commits] [llvm] r166493 - /llvm/trunk/include/llvm/ADT/DenseMap.h
Jakob Stoklund Olesen
stoklund at 2pi.dk
Wed Oct 24 11:29:43 PDT 2012
On Oct 23, 2012, at 12:34 PM, Pete Cooper <peter_cooper at apple.com> wrote:
> + AtLeast = isPowerOf2_32(AtLeast) ? AtLeast : NextPowerOf2(AtLeast);
AtLeast = NextPowerOf2(AtLeast-1); ?
More information about the llvm-commits
mailing list