forked from OSchip/llvm-project
[cxx2a] Fix warning triggered by r343285
llvm-svn: 343369
This commit is contained in:
parent
e174746c5e
commit
0509070811
|
@ -169,7 +169,6 @@ private:
|
|||
Stream.EnterSubblock(ID, BitCodeConstants::SubblockIDSize);
|
||||
}
|
||||
|
||||
StreamSubBlockGuard() = default;
|
||||
StreamSubBlockGuard(const StreamSubBlockGuard &) = delete;
|
||||
StreamSubBlockGuard &operator=(const StreamSubBlockGuard &) = delete;
|
||||
|
||||
|
|
|
@ -1212,7 +1212,6 @@ public:
|
|||
value_type SingleElement;
|
||||
|
||||
public:
|
||||
iterator() = default;
|
||||
explicit iterator(pointer Pos, value_type Single = nullptr)
|
||||
: IteratorBase(Pos), SingleElement(Single) {}
|
||||
|
||||
|
|
|
@ -352,7 +352,6 @@ struct FileDescriptor {
|
|||
|
||||
~FileDescriptor() { close(); }
|
||||
|
||||
FileDescriptor() = default;
|
||||
FileDescriptor(FileDescriptor const&) = delete;
|
||||
FileDescriptor& operator=(FileDescriptor const&) = delete;
|
||||
|
||||
|
|
|
@ -30,8 +30,6 @@ class GSIHashIterator
|
|||
GSIHashIterator, FixedStreamArrayIterator<PSHashRecord>,
|
||||
std::random_access_iterator_tag, const uint32_t> {
|
||||
public:
|
||||
GSIHashIterator() = default;
|
||||
|
||||
template <typename T>
|
||||
GSIHashIterator(T &&v)
|
||||
: GSIHashIterator::iterator_adaptor_base(std::forward<T &&>(v)) {}
|
||||
|
|
|
@ -49,7 +49,7 @@ public:
|
|||
BinarySubstreamRef getC13LinesSubstream() const;
|
||||
BinarySubstreamRef getGlobalRefsSubstream() const;
|
||||
|
||||
ModuleDebugStreamRef &operator=(ModuleDebugStreamRef &&Other) = default;
|
||||
ModuleDebugStreamRef &operator=(ModuleDebugStreamRef &&Other) = delete;
|
||||
|
||||
iterator_range<DebugSubsectionIterator> subsections() const;
|
||||
codeview::DebugSubsectionArray getSubsectionsArray() const {
|
||||
|
|
|
@ -146,7 +146,7 @@ class MaterializationResponsibility {
|
|||
public:
|
||||
MaterializationResponsibility(MaterializationResponsibility &&) = default;
|
||||
MaterializationResponsibility &
|
||||
operator=(MaterializationResponsibility &&) = default;
|
||||
operator=(MaterializationResponsibility &&) = delete;
|
||||
|
||||
/// Destruct a MaterializationResponsibility instance. In debug mode
|
||||
/// this asserts that all symbols being tracked have been either
|
||||
|
|
|
@ -70,8 +70,7 @@ public:
|
|||
RemoteRTDyldMemoryManager &
|
||||
operator=(const RemoteRTDyldMemoryManager &) = delete;
|
||||
RemoteRTDyldMemoryManager(RemoteRTDyldMemoryManager &&) = default;
|
||||
RemoteRTDyldMemoryManager &
|
||||
operator=(RemoteRTDyldMemoryManager &&) = default;
|
||||
RemoteRTDyldMemoryManager &operator=(RemoteRTDyldMemoryManager &&) = delete;
|
||||
|
||||
uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
|
||||
unsigned SectionID,
|
||||
|
|
|
@ -630,8 +630,6 @@ public:
|
|||
this->operator++();
|
||||
}
|
||||
|
||||
LineCoverageIterator &operator=(const LineCoverageIterator &R) = default;
|
||||
|
||||
bool operator==(const LineCoverageIterator &R) const {
|
||||
return &CD == &R.CD && Next == R.Next && Ended == R.Ended;
|
||||
}
|
||||
|
|
|
@ -125,7 +125,6 @@ class MemoryLocOrCall {
|
|||
public:
|
||||
bool IsCall = false;
|
||||
|
||||
MemoryLocOrCall() = default;
|
||||
MemoryLocOrCall(MemoryUseOrDef *MUD)
|
||||
: MemoryLocOrCall(MUD->getMemoryInst()) {}
|
||||
MemoryLocOrCall(const MemoryUseOrDef *MUD)
|
||||
|
|
|
@ -90,7 +90,6 @@ class UnmangledFuncInfo {
|
|||
|
||||
public:
|
||||
using ID = AMDGPULibFunc::EFuncId;
|
||||
UnmangledFuncInfo() = default;
|
||||
UnmangledFuncInfo(StringRef _Name, unsigned _NumArgs)
|
||||
: Name(_Name), NumArgs(_NumArgs) {}
|
||||
// Get index to Table by function name.
|
||||
|
|
|
@ -231,17 +231,17 @@ struct TransformedFunction {
|
|||
TransformedFunction& operator=(TransformedFunction&&) = default;
|
||||
|
||||
/// Type of the function before the transformation.
|
||||
FunctionType* const OriginalType;
|
||||
FunctionType *OriginalType;
|
||||
|
||||
/// Type of the function after the transformation.
|
||||
FunctionType* const TransformedType;
|
||||
FunctionType *TransformedType;
|
||||
|
||||
/// Transforming a function may change the position of arguments. This
|
||||
/// member records the mapping from each argument's old position to its new
|
||||
/// position. Argument positions are zero-indexed. If the transformation
|
||||
/// from F to F' made the first argument of F into the third argument of F',
|
||||
/// then ArgumentIndexMapping[0] will equal 2.
|
||||
const std::vector<unsigned> ArgumentIndexMapping;
|
||||
std::vector<unsigned> ArgumentIndexMapping;
|
||||
};
|
||||
|
||||
/// Given function attributes from a call site for the original function,
|
||||
|
|
Loading…
Reference in New Issue