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

Unified Diff: src/IceRegAlloc.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/IceRNG.h ('k') | src/IceTargetLowering.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceRegAlloc.h
diff --git a/src/IceRegAlloc.h b/src/IceRegAlloc.h
index edcf2662367f2f549e5a7f32a9afad3b15309760..791b349ce04a58f424f04a65b9d42772fcc4d153 100644
--- a/src/IceRegAlloc.h
+++ b/src/IceRegAlloc.h
@@ -43,8 +43,8 @@ public:
void dump(const Cfg *Func) const;
private:
- // LiveRangeWrapper(const LiveRangeWrapper &) LLVM_DELETED_FUNCTION;
- LiveRangeWrapper &operator=(const LiveRangeWrapper &) LLVM_DELETED_FUNCTION;
+ // LiveRangeWrapper(const LiveRangeWrapper &) = delete;
+ LiveRangeWrapper &operator=(const LiveRangeWrapper &) = delete;
};
class LinearScan {
@@ -72,8 +72,8 @@ private:
typedef std::list<LiveRangeWrapper> UnorderedRanges;
OrderedRanges Unhandled;
UnorderedRanges Active, Inactive, Handled;
- LinearScan(const LinearScan &) LLVM_DELETED_FUNCTION;
- LinearScan &operator=(const LinearScan &) LLVM_DELETED_FUNCTION;
+ LinearScan(const LinearScan &) = delete;
+ LinearScan &operator=(const LinearScan &) = delete;
};
} // end of namespace Ice
« no previous file with comments | « src/IceRNG.h ('k') | src/IceTargetLowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698