aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-03-02 00:21:41 +0000
committerChris Lattner <sabre@nondot.org>2006-03-02 00:21:41 +0000
commita1b2a9b7e23609ac415a8b33423b156b8a801ae6 (patch)
tree249441c8bd373c7e82f4ff914ed1ff89088113fa
parent6a3eb01084ff5fe0eee64a66cd050d86a38579c7 (diff)
Fix a compilation error with GCC 4.1. Thanks to Vladimir Merzliakov for
pointing this out. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26467 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/DwarfWriter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/DwarfWriter.h b/include/llvm/CodeGen/DwarfWriter.h
index edfbeea018..6c4aac758c 100644
--- a/include/llvm/CodeGen/DwarfWriter.h
+++ b/include/llvm/CodeGen/DwarfWriter.h
@@ -302,7 +302,7 @@ private:
/// NewType - Create a new type DIE.
///
- DIE *DwarfWriter::NewType(DIE *Context, TypeDesc *TyDesc);
+ DIE *NewType(DIE *Context, TypeDesc *TyDesc);
/// NewCompileUnit - Create new compile unit and it's die.
///