diff options
author | Fangrui Song <maskray@google.com> | 2018-07-16 18:51:40 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2018-07-16 18:51:40 +0000 |
commit | cb0bab86b3f47c82ce415a5e7d12849dbdd58699 (patch) | |
tree | fa3d88a9a60bd01535535cd6d14849a3a3ff2711 /llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | |
parent | b05be5f4b4cc5d426dd8ee7aac8b83556453a766 (diff) | |
download | bcm5719-llvm-cb0bab86b3f47c82ce415a5e7d12849dbdd58699.tar.gz bcm5719-llvm-cb0bab86b3f47c82ce415a5e7d12849dbdd58699.zip |
[CodeGen] Fix inconsistent declaration parameter name
llvm-svn: 337200
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h index 5aea16acdc1..51e1558fe4a 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h @@ -217,7 +217,7 @@ public: DbgVariable *getExistingAbstractVariable(InlinedVariable IV, const DILocalVariable *&Cleansed); DbgVariable *getExistingAbstractVariable(InlinedVariable IV); - void createAbstractVariable(const DILocalVariable *DV, LexicalScope *Scope); + void createAbstractVariable(const DILocalVariable *Var, LexicalScope *Scope); /// Set the skeleton unit associated with this unit. void setSkeleton(DwarfCompileUnit &Skel) { Skeleton = &Skel; } |