diff options
Diffstat (limited to 'llvm/lib/Transforms/Utils/Debugify.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/Debugify.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/Debugify.cpp b/llvm/lib/Transforms/Utils/Debugify.cpp index c2dbdc5..5f70bc4 100644 --- a/llvm/lib/Transforms/Utils/Debugify.cpp +++ b/llvm/lib/Transforms/Utils/Debugify.cpp @@ -123,7 +123,9 @@ bool llvm::applyDebugifyMetadata( if (F.hasPrivateLinkage() || F.hasInternalLinkage()) SPFlags |= DISubprogram::SPFlagLocalToUnit; auto SP = DIB.createFunction(CU, F.getName(), F.getName(), File, NextLine, - SPType, NextLine, DINode::FlagZero, SPFlags); + SPType, NextLine, DINode::FlagZero, SPFlags, + nullptr, nullptr, nullptr, nullptr, "", + /*UseKeyInstructions*/ ApplyAtomGroups); F.setSubprogram(SP); // Helper that inserts a dbg.value before \p InsertBefore, copying the |