mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-03 14:31:10 +00:00
Mark unimplemented copy constructors and copy assignment operators as LLVM_DELETED_FUNCTION.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164015 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fc601db2ed
commit
de8091708f
@ -225,8 +225,8 @@ private:
|
||||
AccessTy(NoModRef), AliasTy(MustAlias), Volatile(false) {
|
||||
}
|
||||
|
||||
AliasSet(const AliasSet &AS); // do not implement
|
||||
void operator=(const AliasSet &AS); // do not implement
|
||||
AliasSet(const AliasSet &AS) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const AliasSet &AS) LLVM_DELETED_FUNCTION;
|
||||
|
||||
PointerRec *getSomePointer() const {
|
||||
return PtrList;
|
||||
|
@ -185,9 +185,9 @@ private:
|
||||
/// in the CalledFunctions array of this or other CallGraphNodes.
|
||||
unsigned NumReferences;
|
||||
|
||||
CallGraphNode(const CallGraphNode &); // DO NOT IMPLEMENT
|
||||
void operator=(const CallGraphNode &); // DO NOT IMPLEMENT
|
||||
|
||||
CallGraphNode(const CallGraphNode &) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const CallGraphNode &) LLVM_DELETED_FUNCTION;
|
||||
|
||||
void DropRef() { --NumReferences; }
|
||||
void AddRef() { ++NumReferences; }
|
||||
public:
|
||||
|
@ -29,8 +29,8 @@ class LazyValueInfo : public FunctionPass {
|
||||
class TargetData *TD;
|
||||
class TargetLibraryInfo *TLI;
|
||||
void *PImpl;
|
||||
LazyValueInfo(const LazyValueInfo&); // DO NOT IMPLEMENT.
|
||||
void operator=(const LazyValueInfo&); // DO NOT IMPLEMENT.
|
||||
LazyValueInfo(const LazyValueInfo&) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const LazyValueInfo&) LLVM_DELETED_FUNCTION;
|
||||
public:
|
||||
static char ID;
|
||||
LazyValueInfo() : FunctionPass(ID), PImpl(0) {
|
||||
|
@ -72,10 +72,9 @@ class LoopBase {
|
||||
// Blocks - The list of blocks in this loop. First entry is the header node.
|
||||
std::vector<BlockT*> Blocks;
|
||||
|
||||
// DO NOT IMPLEMENT
|
||||
LoopBase(const LoopBase<BlockT, LoopT> &);
|
||||
// DO NOT IMPLEMENT
|
||||
const LoopBase<BlockT, LoopT>&operator=(const LoopBase<BlockT, LoopT> &);
|
||||
LoopBase(const LoopBase<BlockT, LoopT> &) LLVM_DELETED_FUNCTION;
|
||||
const LoopBase<BlockT, LoopT>&
|
||||
operator=(const LoopBase<BlockT, LoopT> &) LLVM_DELETED_FUNCTION;
|
||||
public:
|
||||
/// Loop ctor - This creates an empty loop.
|
||||
LoopBase() : ParentLoop(0) {}
|
||||
@ -416,8 +415,8 @@ class LoopInfoBase {
|
||||
friend class LoopBase<BlockT, LoopT>;
|
||||
friend class LoopInfo;
|
||||
|
||||
void operator=(const LoopInfoBase &); // do not implement
|
||||
LoopInfoBase(const LoopInfo &); // do not implement
|
||||
void operator=(const LoopInfoBase &) LLVM_DELETED_FUNCTION;
|
||||
LoopInfoBase(const LoopInfo &) LLVM_DELETED_FUNCTION;
|
||||
public:
|
||||
LoopInfoBase() { }
|
||||
~LoopInfoBase() { releaseMemory(); }
|
||||
@ -550,8 +549,8 @@ class LoopInfo : public FunctionPass {
|
||||
LoopInfoBase<BasicBlock, Loop> LI;
|
||||
friend class LoopBase<BasicBlock, Loop>;
|
||||
|
||||
void operator=(const LoopInfo &); // do not implement
|
||||
LoopInfo(const LoopInfo &); // do not implement
|
||||
void operator=(const LoopInfo &) LLVM_DELETED_FUNCTION;
|
||||
LoopInfo(const LoopInfo &) LLVM_DELETED_FUNCTION;
|
||||
public:
|
||||
static char ID; // Pass identification, replacement for typeid
|
||||
|
||||
|
@ -54,10 +54,8 @@ class FlatIt {};
|
||||
/// @brief A RegionNode represents a subregion or a BasicBlock that is part of a
|
||||
/// Region.
|
||||
class RegionNode {
|
||||
// DO NOT IMPLEMENT
|
||||
RegionNode(const RegionNode &);
|
||||
// DO NOT IMPLEMENT
|
||||
const RegionNode &operator=(const RegionNode &);
|
||||
RegionNode(const RegionNode &) LLVM_DELETED_FUNCTION;
|
||||
const RegionNode &operator=(const RegionNode &) LLVM_DELETED_FUNCTION;
|
||||
|
||||
protected:
|
||||
/// This is the entry basic block that starts this region node. If this is a
|
||||
@ -203,10 +201,8 @@ inline Region* RegionNode::getNodeAs<Region>() const {
|
||||
/// tree, the second one creates a graphical representation using graphviz.
|
||||
class Region : public RegionNode {
|
||||
friend class RegionInfo;
|
||||
// DO NOT IMPLEMENT
|
||||
Region(const Region &);
|
||||
// DO NOT IMPLEMENT
|
||||
const Region &operator=(const Region &);
|
||||
Region(const Region &) LLVM_DELETED_FUNCTION;
|
||||
const Region &operator=(const Region &) LLVM_DELETED_FUNCTION;
|
||||
|
||||
// Information necessary to manage this Region.
|
||||
RegionInfo* RI;
|
||||
@ -565,10 +561,8 @@ class RegionInfo : public FunctionPass {
|
||||
typedef DenseMap<BasicBlock*, Region*> BBtoRegionMap;
|
||||
typedef SmallPtrSet<Region*, 4> RegionSet;
|
||||
|
||||
// DO NOT IMPLEMENT
|
||||
RegionInfo(const RegionInfo &);
|
||||
// DO NOT IMPLEMENT
|
||||
const RegionInfo &operator=(const RegionInfo &);
|
||||
RegionInfo(const RegionInfo &) LLVM_DELETED_FUNCTION;
|
||||
const RegionInfo &operator=(const RegionInfo &) LLVM_DELETED_FUNCTION;
|
||||
|
||||
DominatorTree *DT;
|
||||
PostDominatorTree *PDT;
|
||||
|
@ -70,8 +70,8 @@ namespace llvm {
|
||||
unsigned short SubclassData;
|
||||
|
||||
private:
|
||||
SCEV(const SCEV &); // DO NOT IMPLEMENT
|
||||
void operator=(const SCEV &); // DO NOT IMPLEMENT
|
||||
SCEV(const SCEV &) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const SCEV &) LLVM_DELETED_FUNCTION;
|
||||
|
||||
public:
|
||||
/// NoWrapFlags are bitfield indices into SubclassData.
|
||||
|
@ -130,9 +130,9 @@ class SparseSolver {
|
||||
/// PHI nodes retriggered.
|
||||
typedef std::pair<BasicBlock*,BasicBlock*> Edge;
|
||||
std::set<Edge> KnownFeasibleEdges;
|
||||
|
||||
SparseSolver(const SparseSolver&); // DO NOT IMPLEMENT
|
||||
void operator=(const SparseSolver&); // DO NOT IMPLEMENT
|
||||
|
||||
SparseSolver(const SparseSolver&) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const SparseSolver&) LLVM_DELETED_FUNCTION;
|
||||
public:
|
||||
explicit SparseSolver(AbstractLatticeFunction *Lattice)
|
||||
: LatticeFunc(Lattice) {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user