[PATCH] D88592: [DebugInfo] Emit DBG_VALUE_LIST from ISel
Adrian Prantl via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 10 08:49:56 PST 2020
aprantl accepted this revision.
aprantl added inline comments.
This revision is now accepted and ready to land.
================
Comment at: llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp:754
+ switch (Op.getKind()) {
+ default:
+ llvm_unreachable("unknown SDDbgOperand kind");
----------------
Is there a way to assert while still getting the benefit of Clang's switch-doesnt-cover-all-enum-cases warning here?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D88592/new/
https://reviews.llvm.org/D88592
More information about the llvm-commits
mailing list