1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Fix silly typo.

llvm-svn: 131419
This commit is contained in:
Eli Friedman 2011-05-16 20:34:53 +00:00
parent 5f1b7e4153
commit bd237ec411

View File

@ -842,7 +842,7 @@ FastISel::SelectFNeg(const User *I) {
bool
FastISel::SelectExtractValue(const User *U) {
const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(U);
if (!U)
if (!EVI)
return false;
// Make sure we only try to handle extracts with a legal result.