diff options
author | Chris Lattner <sabre@nondot.org> | 2005-02-27 06:18:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-02-27 06:18:25 +0000 |
commit | da895d63377b421dc50117befb2bec80d2973526 (patch) | |
tree | 4544a49d23c4692c9e14236a5ffa6297b5001c64 /lib/Transforms/Utils/SimplifyCFG.cpp | |
parent | f8db8a04328f11fada2cf81f4b8b2431b3fb1548 (diff) |
Fix spelling, patch contributed by Gabor Greif!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20343 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/SimplifyCFG.cpp')
-rw-r--r-- | lib/Transforms/Utils/SimplifyCFG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp index 870a90143b..4954c7262a 100644 --- a/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/lib/Transforms/Utils/SimplifyCFG.cpp @@ -196,7 +196,7 @@ static bool DominatesMergePoint(Value *V, BasicBlock *BB, if (!I) return true; // Non-instructions all dominate instructions. BasicBlock *PBB = I->getParent(); - // We don't want to allow wierd loops that might have the "if condition" in + // We don't want to allow weird loops that might have the "if condition" in // the bottom of this block. if (PBB == BB) return false; |