Detabify.

llvm-svn: 208019
This commit is contained in:
Nick Lewycky 2014-05-06 00:46:20 +00:00
parent 1fd1d5215c
commit 7185b5d60c
1 changed files with 2 additions and 2 deletions

View File

@ -204,7 +204,7 @@ struct AllocaDerivedValueTracker {
continue;
}
case Instruction::Store: {
if (U->getOperandNo() == 0)
if (U->getOperandNo() == 0)
EscapePoints.insert(I);
continue; // Stores have no users to analyze.
}
@ -216,7 +216,7 @@ struct AllocaDerivedValueTracker {
break;
default:
EscapePoints.insert(I);
break;
break;
}
AddUsesToWorklist(I);