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

Unified Diff: src/IceConditionCodesX8632.h

Issue 952953002: Subzero: Improve class definition hygiene. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix typo Created 5 years, 10 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/IceCfgNode.h ('k') | src/IceConverter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceConditionCodesX8632.h
diff --git a/src/IceConditionCodesX8632.h b/src/IceConditionCodesX8632.h
index a930bf895ae9276bc933d8b56a80b3374bbca4bd..77dd4c753c06e6c8dc49573e490beacba6811cb5 100644
--- a/src/IceConditionCodesX8632.h
+++ b/src/IceConditionCodesX8632.h
@@ -20,6 +20,10 @@
namespace Ice {
class CondX86 {
+ CondX86() = delete;
+ CondX86(const CondX86 &) = delete;
+ CondX86 &operator=(const CondX86 &) = delete;
+
public:
// An enum of condition codes used for branches and cmov. The enum value
// should match the value used to encode operands in binary instructions.
« no previous file with comments | « src/IceCfgNode.h ('k') | src/IceConverter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698