diff options
author | Adrian Prantl <aprantl@apple.com> | 2017-04-26 23:49:30 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2017-04-26 23:49:30 +0000 |
commit | aa1d602fbd4c070b960635f6a32b2776f973e20d (patch) | |
tree | f05534e837c1fad09fe652126e564b092add3fa6 /llvm/tools/opt/BreakpointPrinter.cpp | |
parent | 82c98fcdbf62127584ea288c6f3cf8ffad5f65be (diff) | |
download | bcm5719-llvm-aa1d602fbd4c070b960635f6a32b2776f973e20d.tar.gz bcm5719-llvm-aa1d602fbd4c070b960635f6a32b2776f973e20d.zip |
Revert "Turn DISubprogram into a variable-length node."
This reverts commit r301498 while investigating bot breakage.
llvm-svn: 301499
Diffstat (limited to 'llvm/tools/opt/BreakpointPrinter.cpp')
-rw-r--r-- | llvm/tools/opt/BreakpointPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/opt/BreakpointPrinter.cpp b/llvm/tools/opt/BreakpointPrinter.cpp index e5614ed061e..33b3edcd123 100644 --- a/llvm/tools/opt/BreakpointPrinter.cpp +++ b/llvm/tools/opt/BreakpointPrinter.cpp @@ -51,7 +51,7 @@ struct BreakpointPrinter : public ModulePass { if (!SP) continue; getContextName(SP->getScope().resolve(), Name); - Name = Name + SP->getName().str(); + Name = Name + SP->getDisplayName().str(); if (!Name.empty() && Processed.insert(Name).second) { Out << Name << "\n"; } |