diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-23 06:13:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-23 06:13:01 +0000 |
commit | b700377f850a29a4fc8cb3e1b07809ef1afdcce5 (patch) | |
tree | 082308ba77133b3c9688f0b8d3881bee3975b98d /lib/CodeGen/CGDebugInfo.h | |
parent | b5437d238752dc297e42410e98d38d5250fe0463 (diff) |
implement debug info for _Complex.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69873 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDebugInfo.h')
-rw-r--r-- | lib/CodeGen/CGDebugInfo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/CGDebugInfo.h b/lib/CodeGen/CGDebugInfo.h index 1798165dfa..4a59ecaaa5 100644 --- a/lib/CodeGen/CGDebugInfo.h +++ b/lib/CodeGen/CGDebugInfo.h @@ -49,6 +49,7 @@ class CGDebugInfo { /// Helper functions for getOrCreateType. llvm::DIType CreateType(const BuiltinType *Ty, llvm::DICompileUnit U); + llvm::DIType CreateType(const ComplexType *Ty, llvm::DICompileUnit U); llvm::DIType CreateCVRType(QualType Ty, llvm::DICompileUnit U); llvm::DIType CreateType(const TypedefType *Ty, llvm::DICompileUnit U); llvm::DIType CreateType(const PointerType *Ty, llvm::DICompileUnit U); |