diff options
author | Devang Patel <dpatel@apple.com> | 2010-01-28 23:15:27 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-01-28 23:15:27 +0000 |
commit | 7bfc596fcfb7d68969f7b0d68a9e275e5822c2be (patch) | |
tree | cf19b83ea6fa39e6c1236ed2394c0d5a60decaa7 /clang/lib/CodeGen/CGDebugInfo.cpp | |
parent | 128aa9d176773be297d2545ff99c2bfc1c80066d (diff) | |
download | bcm5719-llvm-7bfc596fcfb7d68969f7b0d68a9e275e5822c2be.tar.gz bcm5719-llvm-7bfc596fcfb7d68969f7b0d68a9e275e5822c2be.zip |
s/CGDebugInfo::getContext/CGDebugInfo::getContextDescriptor/g to avoid confusion.
llvm-svn: 94760
Diffstat (limited to 'clang/lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index 2840ee6e714..3597098a60a 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -49,9 +49,9 @@ void CGDebugInfo::setLocation(SourceLocation Loc) { CurLoc = CGM.getContext().getSourceManager().getInstantiationLoc(Loc); } -/// getContext - Get context info for the decl. -llvm::DIDescriptor CGDebugInfo::getContext(const VarDecl *Decl, - llvm::DIDescriptor &CompileUnit) { +/// getContextDescriptor - Get context info for the decl. +llvm::DIDescriptor CGDebugInfo::getContextDescriptor(const VarDecl *Decl, + llvm::DIDescriptor &CompileUnit) { if (Decl->isFileVarDecl()) return CompileUnit; if (Decl->getDeclContext()->isFunctionOrMethod()) { @@ -1770,8 +1770,8 @@ void CGDebugInfo::EmitGlobalVariable(llvm::GlobalVariable *Var, ArrayType::Normal, 0); } llvm::StringRef DeclName = Decl->getName(); - DebugFactory.CreateGlobalVariable(getContext(Decl, Unit), DeclName, DeclName, - llvm::StringRef(), Unit, LineNo, + DebugFactory.CreateGlobalVariable(getContextDescriptor(Decl, Unit), DeclName, + DeclName, llvm::StringRef(), Unit, LineNo, getOrCreateType(T, Unit), Var->hasInternalLinkage(), true/*definition*/, Var); |