diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-02 00:21:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-02 00:21:41 +0000 |
commit | a1b2a9b7e23609ac415a8b33423b156b8a801ae6 (patch) | |
tree | 249441c8bd373c7e82f4ff914ed1ff89088113fa /include/llvm/CodeGen/DwarfWriter.h | |
parent | 6a3eb01084ff5fe0eee64a66cd050d86a38579c7 (diff) | |
download | external_llvm-a1b2a9b7e23609ac415a8b33423b156b8a801ae6.tar.gz external_llvm-a1b2a9b7e23609ac415a8b33423b156b8a801ae6.tar.bz2 external_llvm-a1b2a9b7e23609ac415a8b33423b156b8a801ae6.zip |
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
Diffstat (limited to 'include/llvm/CodeGen/DwarfWriter.h')
-rw-r--r-- | include/llvm/CodeGen/DwarfWriter.h | 2 |
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. /// |