diff options
author | Adrian Prantl <aprantl@apple.com> | 2013-04-30 22:45:09 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2013-04-30 22:45:09 +0000 |
commit | ab067ae8b00e4d6eea68e94f2bc06e126d538bd8 (patch) | |
tree | f041bdfa04cce4b1e43a674ab101d98bdd89d0e0 /clang/lib/CodeGen | |
parent | 3b87038631130e391b6e4320acba1f6ffa5e4b85 (diff) | |
download | bcm5719-llvm-ab067ae8b00e4d6eea68e94f2bc06e126d538bd8.tar.gz bcm5719-llvm-ab067ae8b00e4d6eea68e94f2bc06e126d538bd8.zip |
Revert 180817 because 180816 was reverted.
llvm-svn: 180823
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index bb2c300ed8b..6beba66c79a 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -2511,6 +2511,22 @@ void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag, DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock()); Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope)); return; + } else if (isa<VariableArrayType>(VD->getType())) { + // These are "complex" variables in that they need an op_deref. + // Create the descriptor for the variable. + llvm::Value *Addr = llvm::ConstantInt::get(CGM.Int64Ty, + llvm::DIBuilder::OpDeref); + llvm::DIVariable D = + DBuilder.createComplexVariable(Tag, + llvm::DIDescriptor(Scope), + Name, Unit, Line, Ty, + Addr, ArgNo); + + // Insert an llvm.dbg.declare into the current block. + llvm::Instruction *Call = + DBuilder.insertDeclare(Storage, D, Builder.GetInsertBlock()); + Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope)); + return; } } else if (const RecordType *RT = dyn_cast<RecordType>(VD->getType())) { // If VD is an anonymous union then Storage represents value for |