[llvm] r256883 - fix typo; NFC

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 5 16:23:12 PST 2016


Author: spatel
Date: Tue Jan  5 18:23:12 2016
New Revision: 256883

URL: http://llvm.org/viewvc/llvm-project?rev=256883&view=rev
Log:
fix typo; NFC

Modified:
    llvm/trunk/lib/Transforms/InstCombine/InstCombineInternal.h

Modified: llvm/trunk/lib/Transforms/InstCombine/InstCombineInternal.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/InstCombine/InstCombineInternal.h?rev=256883&r1=256882&r2=256883&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/InstCombine/InstCombineInternal.h (original)
+++ llvm/trunk/lib/Transforms/InstCombine/InstCombineInternal.h Tue Jan  5 18:23:12 2016
@@ -414,7 +414,7 @@ public:
   /// \brief A combiner-aware RAUW-like routine.
   ///
   /// This method is to be used when an instruction is found to be dead,
-  /// replacable with another preexisting expression. Here we add all uses of
+  /// replaceable with another preexisting expression. Here we add all uses of
   /// I to the worklist, replace all uses of I with the new value, then return
   /// I, so that the inst combiner will know that I was modified.
   Instruction *ReplaceInstUsesWith(Instruction &I, Value *V) {




More information about the llvm-commits mailing list