From 76f405a65f1b2d69ba550a01e70c0a96e1bcdbd2 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Sun, 31 May 2009 16:18:03 +0000 Subject: [PATCH] Fix the name of the function in this comment. llvm-svn: 72666 --- include/llvm/Support/MathExtras.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }