diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-08-15 22:50:29 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-08-15 22:50:29 +0000 |
commit | ae01946afa52e660b650ec7bc5817c9acfe54074 (patch) | |
tree | dd313b9580bb384061859af0d2b1d77d1ce864a5 /clang/lib/CodeGen/CGDebugInfo.h | |
parent | 952dac3b7f77a21d8bffdd8530597c464df75751 (diff) | |
download | bcm5719-llvm-ae01946afa52e660b650ec7bc5817c9acfe54074.tar.gz bcm5719-llvm-ae01946afa52e660b650ec7bc5817c9acfe54074.zip |
DebugInfo: CollectRecordStaticField -> CreateRecordStaticField to return its result.
llvm-svn: 188501
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.h')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.h b/clang/lib/CodeGen/CGDebugInfo.h index 6c4c34c3680..c3d28342343 100644 --- a/clang/lib/CodeGen/CGDebugInfo.h +++ b/clang/lib/CodeGen/CGDebugInfo.h @@ -184,9 +184,8 @@ class CGDebugInfo { void CollectRecordLambdaFields(const CXXRecordDecl *CXXDecl, SmallVectorImpl<llvm::Value *> &E, llvm::DIType RecordTy); - void CollectRecordStaticField(const VarDecl *Var, - SmallVectorImpl<llvm::Value *> &E, - llvm::DIType RecordTy); + llvm::DIDerivedType CreateRecordStaticField(const VarDecl *Var, + llvm::DIType RecordTy); void CollectRecordNormalField(const FieldDecl *Field, uint64_t OffsetInBits, llvm::DIFile F, SmallVectorImpl<llvm::Value *> &E, |