X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=adt%2Fbitfiddle.h;h=f23d85b67a44443899d69bb63594fdfd2a4e8d7b;hb=ead9c60c8b20470ccbf14687bd1593a4c2da341f;hp=628dd77e962e45c5f41632e62fc144cef0df25a0;hpb=ffaec83406ffaee8b981b2b80114bc2e2eab5f0e;p=cparser diff --git a/adt/bitfiddle.h b/adt/bitfiddle.h index 628dd77..f23d85b 100644 --- a/adt/bitfiddle.h +++ b/adt/bitfiddle.h @@ -1,6 +1,6 @@ /* * This file is part of cparser. - * Copyright (C) 2007-2008 Matthias Braun + * Copyright (C) 2007-2009 Matthias Braun * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -100,7 +100,7 @@ unsigned nlz(unsigned x) { : "r" (x)); return 31 - res; #else - x |= x >> 1; + x |= x >> 1; x |= x >> 2; x |= x >> 4; x |= x >> 8;