diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2015-04-11 15:32:26 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2015-04-11 15:32:26 +0000 |
commit | dd0ff857010e14b914a7b69548c69fa77ec20d72 (patch) | |
tree | 1f20f09d95bf8a231d1b99577580781f1b5d81ad /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | |
parent | 7b24b0573d3cc58cf81df4d3ee7d7806e7084388 (diff) | |
download | bcm5719-llvm-dd0ff857010e14b914a7b69548c69fa77ec20d72.tar.gz bcm5719-llvm-dd0ff857010e14b914a7b69548c69fa77ec20d72.zip |
Remove empty non-virtual destructors or mark them =default when non-public
These add no value but can make a class non-trivially copyable. NFC.
llvm-svn: 234688
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h index 90c86a884bc..bacb5790bc8 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h @@ -397,7 +397,6 @@ private: StackProtectorDescriptor() : ParentMBB(nullptr), SuccessMBB(nullptr), FailureMBB(nullptr), Guard(nullptr), GuardReg(0) { } - ~StackProtectorDescriptor() { } /// Returns true if all fields of the stack protector descriptor are /// initialized implying that we should/are ready to emit a stack protector. |