summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2013-07-23 22:20:57 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2013-07-23 22:20:57 +0000
commit59a3878c525657701e83bd516d27236814e29f25 (patch)
tree8fd0807134e0bee6e3601f279fbb96a8846d1f7e /lib/Transforms/Utils
parent43e4854625f5daf6af68dd5b4dccb6b9c9638b39 (diff)
downloadllvm-59a3878c525657701e83bd516d27236814e29f25.tar.gz
llvm-59a3878c525657701e83bd516d27236814e29f25.tar.bz2
llvm-59a3878c525657701e83bd516d27236814e29f25.tar.xz
Fix spelling
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186997 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils')
-rw-r--r--lib/Transforms/Utils/Local.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/Local.cpp b/lib/Transforms/Utils/Local.cpp
index 98147ab88e..dddddf4543 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));