mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
Fix build bot after r338521
llvm-svn: 338522
This commit is contained in:
parent
45f5d3d85c
commit
322eb17255
@ -3959,7 +3959,7 @@ static TreePatternNodePtr PromoteXForms(TreePatternNodePtr N) {
|
||||
if (!N->isLeaf())
|
||||
for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) {
|
||||
TreePatternNodePtr Child = N->getChildShared(i);
|
||||
N->setChild(i, std::move(PromoteXForms(Child)));
|
||||
N->setChild(i, PromoteXForms(Child));
|
||||
}
|
||||
return N;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user