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

Unified Diff: src/IceCfgNode.h

Issue 619983002: Subzero: Remove LLVM_DELETED_FUNCTION. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 3 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/IceCfg.h ('k') | src/IceConverter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceCfgNode.h
diff --git a/src/IceCfgNode.h b/src/IceCfgNode.h
index eba98c0bafb4a4068f208c5c1058acfcee6ba40d..cc97ae412955b98be3167f6ca84490ba91ba641a 100644
--- a/src/IceCfgNode.h
+++ b/src/IceCfgNode.h
@@ -71,8 +71,8 @@ public:
private:
CfgNode(Cfg *Func, SizeT LabelIndex, IceString Name);
- CfgNode(const CfgNode &) LLVM_DELETED_FUNCTION;
- CfgNode &operator=(const CfgNode &) LLVM_DELETED_FUNCTION;
+ CfgNode(const CfgNode &) = delete;
+ CfgNode &operator=(const CfgNode &) = delete;
Cfg *const Func;
const SizeT Number; // label index
IceString Name; // for dumping only
« no previous file with comments | « src/IceCfg.h ('k') | src/IceConverter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698