X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FSupport%2FMathExtras.h;h=85e19acd9ea77dbf2e9a253969d040ec24800604;hb=bb2ead6e5f1f901b25cf79b7a8752dce3cfd5c23;hp=fd3ac9157b3200b70a3f7a5b2b78632227426dc0;hpb=7b9486ad4355a010d22e0737cee9cd7c7b747ece;p=oota-llvm.git diff --git a/include/llvm/Support/MathExtras.h b/include/llvm/Support/MathExtras.h index fd3ac9157b3..85e19acd9ea 100644 --- a/include/llvm/Support/MathExtras.h +++ b/include/llvm/Support/MathExtras.h @@ -321,8 +321,8 @@ inline unsigned Log2_32_Ceil(uint32_t Value) { return 32-CountLeadingZeros_32(Value-1); } -/// Log2_64 - This function returns the ceil log base 2 of the specified value, -/// 64 if the value is zero. (64 bit edition.) +/// Log2_64_Ceil - This function returns the ceil log base 2 of the specified +/// value, 64 if the value is zero. (64 bit edition.) inline unsigned Log2_64_Ceil(uint64_t Value) { return 64-CountLeadingZeros_64(Value-1); }