[PATCH] D151699: [VLIWMachineScheduler] Disable default copy ctor and copy assignment operator for VLIWSchedBoundary
James Nagurne via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue May 30 10:23:37 PDT 2023
JamesNagurne added inline comments.
================
Comment at: llvm/include/llvm/CodeGen/VLIWMachineScheduler.h:155
+ VLIWSchedBoundary &operator=(const VLIWSchedBoundary &other) = delete;
+ VLIWSchedBoundary(const VLIWSchedBoundary &other) = delete;
----------------
What is the reasoning here? It's not obvious to me.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D151699/new/
https://reviews.llvm.org/D151699
More information about the llvm-commits
mailing list