mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-20 02:28:23 +00:00
Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments.
llvm-svn: 163969
This commit is contained in:
parent
f2b97fea6a
commit
dfe55636a3
@ -440,8 +440,8 @@ public:
|
||||
class MCSectionData : public ilist_node<MCSectionData> {
|
||||
friend class MCAsmLayout;
|
||||
|
||||
MCSectionData(const MCSectionData&); // DO NOT IMPLEMENT
|
||||
void operator=(const MCSectionData&); // DO NOT IMPLEMENT
|
||||
MCSectionData(const MCSectionData&) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const MCSectionData&) LLVM_DELETED_FUNCTION;
|
||||
|
||||
public:
|
||||
typedef iplist<MCFragment> FragmentListType;
|
||||
@ -683,8 +683,8 @@ public:
|
||||
typedef std::vector<DataRegionData>::iterator data_region_iterator;
|
||||
|
||||
private:
|
||||
MCAssembler(const MCAssembler&); // DO NOT IMPLEMENT
|
||||
void operator=(const MCAssembler&); // DO NOT IMPLEMENT
|
||||
MCAssembler(const MCAssembler&) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const MCAssembler&) LLVM_DELETED_FUNCTION;
|
||||
|
||||
MCContext &Context;
|
||||
|
||||
|
@ -178,8 +178,8 @@ namespace llvm {
|
||||
class MCLineSection {
|
||||
|
||||
private:
|
||||
MCLineSection(const MCLineSection&); // DO NOT IMPLEMENT
|
||||
void operator=(const MCLineSection&); // DO NOT IMPLEMENT
|
||||
MCLineSection(const MCLineSection&) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const MCLineSection&) LLVM_DELETED_FUNCTION;
|
||||
|
||||
public:
|
||||
// Constructor to create an MCLineSection with an empty MCLineEntries
|
||||
|
Loading…
Reference in New Issue
Block a user