summaryrefslogtreecommitdiff
path: root/lib/IR
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-07-24 01:21:02 +0000
committerEric Christopher <echristo@gmail.com>2013-07-24 01:21:02 +0000
commit2d3adad723653e4acd3d1b3f7fcfd2691acccb73 (patch)
tree672107118bb2f246c3cd3700585edae5dccceaea /lib/IR
parente72a4d4843f8f42ac6dfda6511ad6a0a57468077 (diff)
downloadllvm-2d3adad723653e4acd3d1b3f7fcfd2691acccb73.tar.gz
llvm-2d3adad723653e4acd3d1b3f7fcfd2691acccb73.tar.bz2
llvm-2d3adad723653e4acd3d1b3f7fcfd2691acccb73.tar.xz
Remove unnecessary constructors as the default conversions will handle
all enumerated cases. Reformat the rest of the existing constructors to match. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187015 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/IR')
-rw-r--r--lib/IR/DebugInfo.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/IR/DebugInfo.cpp b/lib/IR/DebugInfo.cpp
index b99f6d551a..4b72bf39c0 100644
--- a/lib/IR/DebugInfo.cpp
+++ b/lib/IR/DebugInfo.cpp
@@ -34,24 +34,6 @@ using namespace llvm::dwarf;
// DIDescriptor
//===----------------------------------------------------------------------===//
-DIDescriptor::DIDescriptor(const DIFile F) : DbgNode(F.DbgNode) {
-}
-
-DIDescriptor::DIDescriptor(const DISubprogram F) : DbgNode(F.DbgNode) {
-}
-
-DIDescriptor::DIDescriptor(const DILexicalBlockFile F) : DbgNode(F.DbgNode) {
-}
-
-DIDescriptor::DIDescriptor(const DILexicalBlock F) : DbgNode(F.DbgNode) {
-}
-
-DIDescriptor::DIDescriptor(const DIVariable F) : DbgNode(F.DbgNode) {
-}
-
-DIDescriptor::DIDescriptor(const DIType F) : DbgNode(F.DbgNode) {
-}
-
bool DIDescriptor::Verify() const {
return DbgNode &&
(DIDerivedType(DbgNode).Verify() ||