mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-08 03:30:22 +00:00
Clean up a dead return missed in r55055.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55057 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
67ca6be16a
commit
cb0fe7c226
@ -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), [{
|
||||
|
Loading…
Reference in New Issue
Block a user