From: Matt Arsenault Date: Tue, 23 Jul 2013 22:20:57 +0000 (+0000) Subject: Fix spelling X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=59a3878c525657701e83bd516d27236814e29f25;p=oota-llvm.git Fix spelling git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186997 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Utils/Local.cpp b/lib/Transforms/Utils/Local.cpp index 98147ab88e5..dddddf45438 100644 --- a/lib/Transforms/Utils/Local.cpp +++ b/lib/Transforms/Utils/Local.cpp @@ -936,7 +936,7 @@ unsigned llvm::getOrEnforceKnownAlignment(Value *V, unsigned PrefAlign, ComputeMaskedBits(V, KnownZero, KnownOne, TD); unsigned TrailZ = KnownZero.countTrailingOnes(); - // Avoid trouble with rediculously large TrailZ values, such as + // Avoid trouble with ridiculously large TrailZ values, such as // those computed from a null pointer. TrailZ = std::min(TrailZ, unsigned(sizeof(unsigned) * CHAR_BIT - 1));