1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

fix grammaro's pointed out by daniel

llvm-svn: 97313
This commit is contained in:
Chris Lattner 2010-02-27 07:50:40 +00:00
parent 73225fdc51
commit ca018ea20b

View File

@ -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<ReturnInst*, 8> ReturnsToZap;
// TODO: Process multiple value ret instructions also.