[llvm] r268790 - [RS4GC] Fix typo in comment
Sanjoy Das via llvm-commits
llvm-commits at lists.llvm.org
Fri May 6 13:39:34 PDT 2016
Author: sanjoy
Date: Fri May 6 15:39:33 2016
New Revision: 268790
URL: http://llvm.org/viewvc/llvm-project?rev=268790&view=rev
Log:
[RS4GC] Fix typo in comment
Modified:
llvm/trunk/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp?rev=268790&r1=268789&r2=268790&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp Fri May 6 15:39:33 2016
@@ -1349,7 +1349,7 @@ makeStatepointExplicitImpl(const CallSit
Value *CallTarget = CS.getCalledValue();
if (Function *F = dyn_cast<Function>(CallTarget)) {
if (F->getIntrinsicID() == Intrinsic::experimental_deoptimize) {
- // Calls to llvm.experimental.deoptimize are lowered to calls the the
+ // Calls to llvm.experimental.deoptimize are lowered to calls to the
// __llvm_deoptimize symbol. We want to resolve this now, since the
// verifier does not allow taking the address of an intrinsic function.
More information about the llvm-commits
mailing list