1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

fix typo; NFC

llvm-svn: 253785
This commit is contained in:
Sanjay Patel 2015-11-21 16:16:29 +00:00
parent 58d25e69b7
commit 85d5af7b49

View File

@ -1210,7 +1210,7 @@ Instruction *InstCombiner::visitFPTrunc(FPTruncInst &CI) {
if (Instruction *I = commonCastTransforms(CI)) if (Instruction *I = commonCastTransforms(CI))
return I; return I;
// If we have fptrunc(OpI (fpextend x), (fpextend y)), we would like to // 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. // operations if we can do so without changing the numerical results.
// //
// The exact manner in which the widths of the operands interact to limit // The exact manner in which the widths of the operands interact to limit