diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-08-15 20:17:25 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-08-15 20:17:25 +0000 |
commit | 4e7ef80e68f9d3a984b354e152eabe71be9b6b44 (patch) | |
tree | 6be6c7f4f709fef0187bec461204d4527a08a411 /clang/lib/CodeGen/CGDebugInfo.h | |
parent | bbecd09658b7a19626f5a86a64428ca0b851c91f (diff) | |
download | bcm5719-llvm-4e7ef80e68f9d3a984b354e152eabe71be9b6b44.tar.gz bcm5719-llvm-4e7ef80e68f9d3a984b354e152eabe71be9b6b44.zip |
DebugInfo: Revert change to the return type of createRecordFwdDecl
It still does only return DICompositeType, but I've no need to make that
change right now.
llvm-svn: 188482
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.h')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.h b/clang/lib/CodeGen/CGDebugInfo.h index 3a0d07f2a8c..74b8e959993 100644 --- a/clang/lib/CodeGen/CGDebugInfo.h +++ b/clang/lib/CodeGen/CGDebugInfo.h @@ -306,8 +306,7 @@ private: llvm::DIScope getCurrentContextDescriptor(const Decl *Decl); /// \brief Create a forward decl for a RecordType in a given context. - llvm::DICompositeType getOrCreateRecordFwdDecl(const RecordDecl *, - llvm::DIDescriptor); + llvm::DIType getOrCreateRecordFwdDecl(const RecordDecl *, llvm::DIDescriptor); /// createContextChain - Create a set of decls for the context chain. llvm::DIDescriptor createContextChain(const Decl *Decl); |