Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Unified Diff: src/IceLiveness.h

Issue 656123003: Subzero: Class definition cleanup. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Changes for Karl Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceIntrinsics.h ('k') | src/IceOperand.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceLiveness.h
diff --git a/src/IceLiveness.h b/src/IceLiveness.h
index 4c6da6c9021676006793c54329bce02813dbfbe0..f6af0e1033100b2ab1bd17af0364b1d640b348b5 100644
--- a/src/IceLiveness.h
+++ b/src/IceLiveness.h
@@ -26,6 +26,11 @@
namespace Ice {
class LivenessNode {
+ // TODO: Disable these constructors when Liveness::Nodes is no
+ // longer an STL container.
+ // LivenessNode(const LivenessNode &) = delete;
+ // LivenessNode &operator=(const LivenessNode &) = delete;
+
public:
LivenessNode() : NumLocals(0) {}
// NumLocals is the number of Variables local to this block.
@@ -43,12 +48,6 @@ public:
// index/key of each element is less than NumLocals +
// Liveness::NumGlobals.
LiveBeginEndMap LiveBegin, LiveEnd;
-
-private:
- // TODO: Disable these constructors when Liveness::Nodes is no
- // longer an STL container.
- // LivenessNode(const LivenessNode &) = delete;
- // LivenessNode &operator=(const LivenessNode &) = delete;
};
class Liveness {
« no previous file with comments | « src/IceIntrinsics.h ('k') | src/IceOperand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698