diff options
| author | Dan Gohman <gohman@apple.com> | 2010-08-20 22:39:47 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-08-20 22:39:47 +0000 |
| commit | 5fc55dc3cf2331ec503236c4abefed3dcd8156af (patch) | |
| tree | fca383725c17d196a741df03ec54abb504826647 /llvm/lib/Analysis/DebugInfo.cpp | |
| parent | 578ee4070c00a87df183360072d299976d7712a2 (diff) | |
| download | llvm-5fc55dc3cf2331ec503236c4abefed3dcd8156af.zip llvm-5fc55dc3cf2331ec503236c4abefed3dcd8156af.tar.gz llvm-5fc55dc3cf2331ec503236c4abefed3dcd8156af.tar.bz2 | |
CreateTemporaryType doesn't needs its Context argument.
llvm-svn: 111687
Diffstat (limited to 'llvm/lib/Analysis/DebugInfo.cpp')
| -rw-r--r-- | llvm/lib/Analysis/DebugInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DebugInfo.cpp b/llvm/lib/Analysis/DebugInfo.cpp index 065a00a..0bd7904 100644 --- a/llvm/lib/Analysis/DebugInfo.cpp +++ b/llvm/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[] = { |
