[PATCH] D43313: [DebugInfo] Support parsing DWARF expressions
Jonas Devlieghere via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 1 01:05:12 PST 2018
JDevlieghere added inline comments.
================
Comment at: include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h:50
+ /// sequence of operations and operands handled separately by DWARFExpression.
+ struct Instruction {
+ Instruction(uint8_t Opcode) : Opcode(Opcode) {}
----------------
Doesn't this represent the same thing as the `DWARFExpression::Operation`?
Repository:
rL LLVM
https://reviews.llvm.org/D43313
More information about the llvm-commits
mailing list