Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions llvm/include/llvm/TextAPI/SymbolSet.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ class SymbolSet {

public:
SymbolSet() = default;
SymbolSet(const SymbolSet &other) = delete;
SymbolSet &operator=(const SymbolSet &other) = delete;
LLVM_ABI ~SymbolSet();
LLVM_ABI Symbol *addGlobal(EncodeKind Kind, StringRef Name, SymbolFlags Flags,
const Target &Targ);
Expand Down
3 changes: 3 additions & 0 deletions llvm/lib/CAS/InMemoryCAS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ class InMemoryObject {
InMemoryObject() = delete;
InMemoryObject(InMemoryObject &&) = delete;
InMemoryObject(const InMemoryObject &) = delete;
InMemoryObject &operator=(const InMemoryObject &) = delete;
InMemoryObject &operator=(InMemoryObject &&) = delete;
virtual ~InMemoryObject() = default;

protected:
InMemoryObject(Kind K, const InMemoryIndexValueT &I) : IndexAndKind(&I, K) {}
Expand Down