diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-05-16 20:34:53 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-05-16 20:34:53 +0000 |
commit | 4c08bb450a6e2a10c87b0bb7e411f5f5046b601d (patch) | |
tree | 437da9ea1a4341ca254712c4f22ad70f51cf825a /llvm/lib | |
parent | fac7b3aae60146638ce1446b2347ad43ccdd32ca (diff) | |
download | bcm5719-llvm-4c08bb450a6e2a10c87b0bb7e411f5f5046b601d.tar.gz bcm5719-llvm-4c08bb450a6e2a10c87b0bb7e411f5f5046b601d.zip |
Fix silly typo.
llvm-svn: 131419
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index 27e4d01784b..e0367e9c8e7 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -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. |