diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-10-31 16:45:36 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-10-31 16:45:36 +0000 |
commit | fb2efde3419831df9076b9d78c4534404da0c2f8 (patch) | |
tree | c6f977e1031f052c5d74c7dc078a9025f6ba6ca9 /llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp | |
parent | 06e8d69ac7ae98f239dd66819477e3bbf245c4ac (diff) | |
download | bcm5719-llvm-fb2efde3419831df9076b9d78c4534404da0c2f8.tar.gz bcm5719-llvm-fb2efde3419831df9076b9d78c4534404da0c2f8.zip |
Correct assert text from r220923
Noticed in post-commit review by Adrian Prantl.
llvm-svn: 220967
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp index c1c50df9ad3..d62e9bcc86c 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp @@ -182,7 +182,7 @@ void DwarfFile::addScopeVariable(LexicalScope *LS, DbgVariable *Var) { // location (eg: via a macro, or without column info, etc)) and then // their arguments are conflated as well. assert((LS->getParent() || CurNum != ArgNum) && - "Missing parameter for top level (non-inlined) function"); + "Duplicate argument for top level (non-inlined) function"); ++I; } Vars.insert(I, Var); |