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

Unified Diff: lib/Bitcode/NaCl/Analysis/NaClCompress.cpp

Issue 1151093004: Changes from 3.7 merge to files not in upstream (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: Created 5 years, 7 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
Index: lib/Bitcode/NaCl/Analysis/NaClCompress.cpp
diff --git a/lib/Bitcode/NaCl/Analysis/NaClCompress.cpp b/lib/Bitcode/NaCl/Analysis/NaClCompress.cpp
index 6e02eaf7e8edffa891b09e8192a31b185a753f84..77225aadc2f6c50234a64e3d4398c1496b4f0655 100644
--- a/lib/Bitcode/NaCl/Analysis/NaClCompress.cpp
+++ b/lib/Bitcode/NaCl/Analysis/NaClCompress.cpp
@@ -465,10 +465,8 @@ static BlockAbbrevs *getAbbrevs(BlockAbbrevsMapType &AbbrevsMap,
/// corresponding lists of global abbreviations to use in the
/// generated (compressed) bitcode file.
class NaClAnalyzeParser : public NaClBitcodeParser {
- NaClAnalyzeParser(const NaClAnalyzeParser&)
- LLVM_DELETED_FUNCTION;
- void operator=(const NaClAnalyzeParser&)
- LLVM_DELETED_FUNCTION;
+ NaClAnalyzeParser(const NaClAnalyzeParser&) = delete;
+ void operator=(const NaClAnalyzeParser&) = delete;
public:
// Creates the analysis parser, which will fill the given
@@ -503,10 +501,8 @@ public:
};
class NaClBlockAnalyzeParser : public NaClBitcodeParser {
- NaClBlockAnalyzeParser(const NaClBlockAnalyzeParser&)
- LLVM_DELETED_FUNCTION;
- void operator=(NaClBlockAnalyzeParser&)
- LLVM_DELETED_FUNCTION;
+ NaClBlockAnalyzeParser(const NaClBlockAnalyzeParser&) = delete;
+ void operator=(NaClBlockAnalyzeParser&) = delete;
public:
/// Top-level constructor to build the top-level block with the
@@ -652,7 +648,7 @@ bool NaClAnalyzeParser::ParseBlock(unsigned BlockID) {
/// keep the array abbreviation op, for untracked elements within the
/// distribution maps.
class UnrolledAbbreviation {
- void operator=(const UnrolledAbbreviation&) LLVM_DELETED_FUNCTION;
+ void operator=(const UnrolledAbbreviation&) = delete;
public:
/// Unroll the given abbreviation, assuming it has the given size
/// (as specified in the distribution maps).

Powered by Google App Engine
This is Rietveld 408576698