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

Remove redundant fold call introduced in r195944. Thanks very much to Juergen

for pointing this out.
 

llvm-svn: 198341
This commit is contained in:
Lang Hames 2014-01-02 19:38:41 +00:00
parent fe40c76eea
commit ef9c36e881

View File

@ -531,9 +531,8 @@ TargetInstrInfo::foldMemoryOperand(MachineBasicBlock::iterator MI,
NewMI = foldPatchpoint(MF, MI, Ops, FrameIndex, *this);
} else {
// Ask the target to do the actual folding.
NewMI =foldMemoryOperandImpl(MF, MI, Ops, LoadMI);
NewMI = foldMemoryOperandImpl(MF, MI, Ops, LoadMI);
}
foldMemoryOperandImpl(MF, MI, Ops, LoadMI);
if (!NewMI) return 0;