From 5385a579693ec4b4876b9c6fd8cd472e49ed5fd6 Mon Sep 17 00:00:00 2001 From: vanjeff Date: Wed, 24 Sep 2008 05:30:40 +0000 Subject: clean up baselib according to review comments. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5958 6f19259b-4bc3-4df7-8a09-765794883524 --- MdePkg/Library/BaseLib/RRotU64.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'MdePkg/Library/BaseLib/RRotU64.c') diff --git a/MdePkg/Library/BaseLib/RRotU64.c b/MdePkg/Library/BaseLib/RRotU64.c index 2b96cb9af0..abce4f72e3 100644 --- a/MdePkg/Library/BaseLib/RRotU64.c +++ b/MdePkg/Library/BaseLib/RRotU64.c @@ -1,7 +1,7 @@ /** @file Math worker functions. - Copyright (c) 2006, Intel Corporation
+ Copyright (c) 2006 - 2008, Intel Corporation
All rights reserved. This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -12,9 +12,6 @@ **/ - - - #include "BaseLibInternals.h" /** @@ -40,6 +37,6 @@ RRotU64 ( IN UINTN Count ) { - ASSERT (Count < sizeof (Operand) * 8); + ASSERT (Count < 64); return InternalMathRRotU64 (Operand, Count); } -- cgit v1.2.3