[llvm-commits] [llvm] r131419 - /llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
Eli Friedman
eli.friedman at gmail.com
Mon May 16 13:34:53 PDT 2011
Author: efriedma
Date: Mon May 16 15:34:53 2011
New Revision: 131419
URL: http://llvm.org/viewvc/llvm-project?rev=131419&view=rev
Log:
Fix silly typo.
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp?rev=131419&r1=131418&r2=131419&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp Mon May 16 15:34:53 2011
@@ -842,7 +842,7 @@
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.
More information about the llvm-commits
mailing list