Revert "[LoopNest] Fix Wdeprecated-copy warnings"

This reverts commit dee1f0cb34.

It appears that this change broke the sanitizer-windows bot:
https://lab.llvm.org/buildbot/#/builders/127/builds/12064

Differential Revision: https://reviews.llvm.org/D103752
This commit is contained in:
Whitney Tsang 2021-06-08 20:44:57 +00:00
parent 1683dbf0dd
commit 07ef5805ab
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@ public:
LoopNest(Loop &Root, ScalarEvolution &SE);
LoopNest() = delete;
LoopNest &operator=(const LoopNest &) = delete;
/// Construct a LoopNest object.
static std::unique_ptr<LoopNest> getLoopNest(Loop &Root, ScalarEvolution &SE);