From a3833f18bf897598121ecfb0377f1931d8e03d21 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 20 Aug 2010 22:39:47 +0000 Subject: [PATCH] CreateTemporaryType doesn't needs its Context argument. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111687 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/DebugInfo.h | 2 +- lib/Analysis/DebugInfo.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h index da226273a01..51bede091c1 100644 --- a/include/llvm/Analysis/DebugInfo.h +++ b/include/llvm/Analysis/DebugInfo.h @@ -655,7 +655,7 @@ namespace llvm { MDNode *ContainingType = 0); /// CreateTemporaryType - Create a temporary forward-declared type. - DIType CreateTemporaryType(DIDescriptor Context); + DIType CreateTemporaryType(); /// CreateArtificialType - Create a new DIType with "artificial" flag set. DIType CreateArtificialType(DIType Ty); diff --git a/lib/Analysis/DebugInfo.cpp b/lib/Analysis/DebugInfo.cpp index 065a00ae609..0bd7904060a 100644 --- a/lib/Analysis/DebugInfo.cpp +++ b/lib/Analysis/DebugInfo.cpp @@ -937,7 +937,7 @@ DICompositeType DIFactory::CreateCompositeType(unsigned Tag, /// CreateTemporaryType - Create a temporary forward-declared type. -DIType DIFactory::CreateTemporaryType(DIDescriptor Context) { +DIType DIFactory::CreateTemporaryType() { // Give the temporary MDNode a tag. It doesn't matter what tag we // use here as long as DIType accepts it. Value *Elts[] = { -- 2.34.1