[PATCH] D152233: [CodeGen] Disable default copy ctor and copy assignment operator for AggressiveAntiDepBreaker

Bing Yu via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 8 00:52:43 PDT 2023


This revision was automatically updated to reflect the committed changes.
Closed by commit rG9b9848fb4d04: [CodeGen] Disable default copy ctor and copy assignment operator for… (authored by yubing).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D152233/new/

https://reviews.llvm.org/D152233

Files:
  llvm/lib/CodeGen/AggressiveAntiDepBreaker.h


Index: llvm/lib/CodeGen/AggressiveAntiDepBreaker.h
===================================================================
--- llvm/lib/CodeGen/AggressiveAntiDepBreaker.h
+++ llvm/lib/CodeGen/AggressiveAntiDepBreaker.h
@@ -132,6 +132,9 @@
     AggressiveAntiDepBreaker(MachineFunction &MFi,
                           const RegisterClassInfo &RCI,
                           TargetSubtargetInfo::RegClassVector& CriticalPathRCs);
+    AggressiveAntiDepBreaker &
+    operator=(const AggressiveAntiDepBreaker &other) = delete;
+    AggressiveAntiDepBreaker(const AggressiveAntiDepBreaker &other) = delete;
     ~AggressiveAntiDepBreaker() override;
 
     /// Initialize anti-dep breaking for a new basic block.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D152233.529520.patch
Type: text/x-patch
Size: 707 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230608/04f09a60/attachment.bin>


More information about the llvm-commits mailing list