diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp index 5a0f62083ef..7e37938868d 100644 --- a/lib/Transforms/Scalar/SCCP.cpp +++ b/lib/Transforms/Scalar/SCCP.cpp @@ -1921,9 +1921,9 @@ bool IPSCCP::runOnModule(Module &M) { // // Do this in two stages: first identify the functions we should process, then // actually zap their returns. This is important because we can only do this - // the address of the function isn't taken. In cases where a return is the + // if the address of the function isn't taken. In cases where a return is the // last use of a function, the order of processing functions would affect - // whether we other functions are optimizable. + // whether other functions are optimizable. SmallVector ReturnsToZap; // TODO: Process multiple value ret instructions also.