| 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
|
|
|