1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01: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

@ -533,7 +533,6 @@ TargetInstrInfo::foldMemoryOperand(MachineBasicBlock::iterator MI,
// Ask the target to do the actual folding.
NewMI = foldMemoryOperandImpl(MF, MI, Ops, LoadMI);
}
foldMemoryOperandImpl(MF, MI, Ops, LoadMI);
if (!NewMI) return 0;