Use a reference rather than a pointer as we don't expect a NULL

DbgVariable.

No functional change.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194761 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher
2013-11-15 01:43:19 +00:00
parent 59d3ae6cdc
commit 7b64181529
3 changed files with 23 additions and 23 deletions

View File

@@ -317,7 +317,7 @@ public:
void constructContainingTypeDIEs();
/// constructVariableDIE - Construct a DIE for the given DbgVariable.
DIE *constructVariableDIE(DbgVariable *DV, bool isScopeAbstract);
DIE *constructVariableDIE(DbgVariable &DV, bool isScopeAbstract);
/// Create a DIE with the given Tag, add the DIE to its parent, and
/// call insertDIE if MD is not null.