From: Manman Ren Date: Mon, 8 Jul 2013 21:55:46 +0000 (+0000) Subject: DebugInfo: remove unused helper function getDICompositeType. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=6cf7246ecaf058733fdf8fa47896907204839f68;p=oota-llvm.git DebugInfo: remove unused helper function getDICompositeType. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185876 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/DebugInfo.h b/include/llvm/DebugInfo.h index 372d367b707..dd03bf70d2c 100644 --- a/include/llvm/DebugInfo.h +++ b/include/llvm/DebugInfo.h @@ -695,9 +695,6 @@ namespace llvm { /// getDISubprogram - Find subprogram that is enclosing this scope. DISubprogram getDISubprogram(const MDNode *Scope); - /// getDICompositeType - Find underlying composite type. - DICompositeType getDICompositeType(DIType T); - /// isSubprogramContext - Return true if Context is either a subprogram /// or another context nested inside a subprogram. bool isSubprogramContext(const MDNode *Context); diff --git a/lib/IR/DebugInfo.cpp b/lib/IR/DebugInfo.cpp index 25d4ea4fc2a..c55d68fdc74 100644 --- a/lib/IR/DebugInfo.cpp +++ b/lib/IR/DebugInfo.cpp @@ -844,17 +844,6 @@ DISubprogram llvm::getDISubprogram(const MDNode *Scope) { return DISubprogram(); } -/// getDICompositeType - Find underlying composite type. -DICompositeType llvm::getDICompositeType(DIType T) { - if (T.isCompositeType()) - return DICompositeType(T); - - if (T.isDerivedType()) - return getDICompositeType(DIDerivedType(T).getTypeDerivedFrom()); - - return DICompositeType(); -} - /// isSubprogramContext - Return true if Context is either a subprogram /// or another context nested inside a subprogram. bool llvm::isSubprogramContext(const MDNode *Context) {