mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 08:41:44 +00:00
[LoadCombine] Simplify code with a brace init. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@277921 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0f888a7ccd
commit
fb0b339283
@ -44,9 +44,6 @@ struct PointerOffsetPair {
|
||||
};
|
||||
|
||||
struct LoadPOPPair {
|
||||
LoadPOPPair() = default;
|
||||
LoadPOPPair(LoadInst *L, PointerOffsetPair P, unsigned O)
|
||||
: Load(L), POP(P), InsertOrder(O) {}
|
||||
LoadInst *Load;
|
||||
PointerOffsetPair POP;
|
||||
/// \brief The new load needs to be created before the first load in IR order.
|
||||
@ -264,7 +261,7 @@ bool LoadCombine::runOnBasicBlock(BasicBlock &BB) {
|
||||
auto POP = getPointerOffsetPair(*LI);
|
||||
if (!POP.Pointer)
|
||||
continue;
|
||||
LoadMap[POP.Pointer].push_back(LoadPOPPair(LI, POP, Index++));
|
||||
LoadMap[POP.Pointer].push_back({LI, std::move(POP), Index++});
|
||||
AST.add(LI);
|
||||
}
|
||||
if (combineLoads(LoadMap))
|
||||
|
Loading…
x
Reference in New Issue
Block a user