[llvm-commits] [llvm] r170050 - /llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp
Chad Rosier
mcrosier at apple.com
Wed Dec 12 16:18:47 PST 2012
Author: mcrosier
Date: Wed Dec 12 18:18:46 2012
New Revision: 170050
URL: http://llvm.org/viewvc/llvm-project?rev=170050&view=rev
Log:
Typo.
Modified:
llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp
Modified: llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp?rev=170050&r1=170049&r2=170050&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp (original)
+++ llvm/trunk/lib/Transforms/InstCombine/InstCombineCalls.cpp Wed Dec 12 18:18:46 2012
@@ -899,7 +899,7 @@
new StoreInst(ConstantInt::getTrue(Callee->getContext()),
UndefValue::get(Type::getInt1PtrTy(Callee->getContext())),
OldCall);
- // If OldCall dues not return void then replaceAllUsesWith undef.
+ // If OldCall does not return void then replaceAllUsesWith undef.
// This allows ValueHandlers and custom metadata to adjust itself.
if (!OldCall->getType()->isVoidTy())
ReplaceInstUsesWith(*OldCall, UndefValue::get(OldCall->getType()));
More information about the llvm-commits
mailing list