Clean up a dead return missed in r55055.

llvm-svn: 55057
This commit is contained in:
Dan Gohman 2008-08-20 15:54:46 +00:00
parent 8823b0d245
commit 3ad7e96f8a
1 changed files with 2 additions and 3 deletions

View File

@ -614,9 +614,8 @@ def truncstorei16 : PatFrag<(ops node:$val, node:$ptr),
def truncstorei32 : PatFrag<(ops node:$val, node:$ptr),
(st node:$val, node:$ptr), [{
StoreSDNode *ST = cast<StoreSDNode>(N);
return ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i32 &&
ST->getAddressingMode() == ISD::UNINDEXED;
return false;
return ST->isTruncatingStore() && ST->getMemoryVT() == MVT::i32 &&
ST->getAddressingMode() == ISD::UNINDEXED;
}]>;
def truncstoref32 : PatFrag<(ops node:$val, node:$ptr),
(st node:$val, node:$ptr), [{