[PATCH] D76164: Fix an assertion error when emitting call site info that combines two DW_OP_stack_values.

Adrian Prantl via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 17 09:38:15 PDT 2020


aprantl added inline comments.


================
Comment at: llvm/lib/IR/DebugInfoMetadata.cpp:1116
+  auto *result = DIExpression::get(Expr->getContext(), NewOps);
+  assert(result->isValid() && "concatentated expression is not valid");
+  return result;
----------------
typo: "concatenated" or "appended"?


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D76164/new/

https://reviews.llvm.org/D76164





More information about the llvm-commits mailing list