[llvm] r253785 - fix typo; NFC

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Sat Nov 21 08:16:30 PST 2015


Author: spatel
Date: Sat Nov 21 10:16:29 2015
New Revision: 253785

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

Modified:
    llvm/trunk/lib/Transforms/InstCombine/InstCombineCasts.cpp

Modified: llvm/trunk/lib/Transforms/InstCombine/InstCombineCasts.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/InstCombine/InstCombineCasts.cpp?rev=253785&r1=253784&r2=253785&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/InstCombine/InstCombineCasts.cpp (original)
+++ llvm/trunk/lib/Transforms/InstCombine/InstCombineCasts.cpp Sat Nov 21 10:16:29 2015
@@ -1210,7 +1210,7 @@ Instruction *InstCombiner::visitFPTrunc(
   if (Instruction *I = commonCastTransforms(CI))
     return I;
   // If we have fptrunc(OpI (fpextend x), (fpextend y)), we would like to
-  // simpilify this expression to avoid one or more of the trunc/extend
+  // simplify this expression to avoid one or more of the trunc/extend
   // operations if we can do so without changing the numerical results.
   //
   // The exact manner in which the widths of the operands interact to limit




More information about the llvm-commits mailing list