diff options
| author | Craig Topper <craig.topper@gmail.com> | 2012-09-15 16:22:27 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@gmail.com> | 2012-09-15 16:22:27 +0000 |
| commit | da386573c7bc829e223e77765e5aa6580b3117c7 (patch) | |
| tree | b7cd0bc39c54e2ee3ad590a91cd8a66ad2f5c764 /llvm | |
| parent | ed11e35e5781cce8a66566484590c486b6ab6b8d (diff) | |
| download | bcm5719-llvm-da386573c7bc829e223e77765e5aa6580b3117c7.tar.gz bcm5719-llvm-da386573c7bc829e223e77765e5aa6580b3117c7.zip | |
Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments.
llvm-svn: 163969
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/MC/MCAssembler.h | 8 | ||||
| -rw-r--r-- | llvm/include/llvm/MC/MCDwarf.h | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/llvm/include/llvm/MC/MCAssembler.h b/llvm/include/llvm/MC/MCAssembler.h index fd8f02ac121..83c01ec5b98 100644 --- a/llvm/include/llvm/MC/MCAssembler.h +++ b/llvm/include/llvm/MC/MCAssembler.h @@ -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; diff --git a/llvm/include/llvm/MC/MCDwarf.h b/llvm/include/llvm/MC/MCDwarf.h index a2d1210f1e7..8fc437f3e69 100644 --- a/llvm/include/llvm/MC/MCDwarf.h +++ b/llvm/include/llvm/MC/MCDwarf.h @@ -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 |

