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

Unified Diff: src/assembler.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/PNaClTranslator.cpp ('k') | src/assembler_ia32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/assembler.h
diff --git a/src/assembler.h b/src/assembler.h
index 92cc98d1f9c5ba9b4bc0d81a7f5918f56b8b694b..46cf0100e4ab38d3862df2f4726559db63733481 100644
--- a/src/assembler.h
+++ b/src/assembler.h
@@ -64,8 +64,8 @@ private:
void set_position(intptr_t position) { position_ = position; }
- AssemblerFixup(const AssemblerFixup &) LLVM_DELETED_FUNCTION;
- AssemblerFixup &operator=(const AssemblerFixup &) LLVM_DELETED_FUNCTION;
+ AssemblerFixup(const AssemblerFixup &) = delete;
+ AssemblerFixup &operator=(const AssemblerFixup &) = delete;
friend class AssemblerBuffer;
};
@@ -213,8 +213,8 @@ public:
private:
llvm::BumpPtrAllocator Allocator;
- Assembler(const Assembler &) LLVM_DELETED_FUNCTION;
- Assembler &operator=(const Assembler &) LLVM_DELETED_FUNCTION;
+ Assembler(const Assembler &) = delete;
+ Assembler &operator=(const Assembler &) = delete;
};
} // end of namespace Ice
« no previous file with comments | « src/PNaClTranslator.cpp ('k') | src/assembler_ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698