diff options
| author | Rusty Wagner <rusty@vector35.com> | 2016-07-29 22:12:59 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2016-07-29 22:12:59 -0400 |
| commit | 038d192dfb3f73a268447d890cccf27926d35941 (patch) | |
| tree | 87065866c86fd7416e520124b8a688d3da16883e /basicblock.cpp | |
| parent | 508584830e65fc08ea3a756dfa651670c9e01217 (diff) | |
Add API to set display type of integers
Diffstat (limited to 'basicblock.cpp')
| -rw-r--r-- | basicblock.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/basicblock.cpp b/basicblock.cpp index 67ee1983..377c5704 100644 --- a/basicblock.cpp +++ b/basicblock.cpp @@ -162,6 +162,8 @@ vector<DisassemblyTextLine> BasicBlock::GetDisassemblyText(DisassemblySettings* token.type = lines[i].tokens[j].type; token.text = lines[i].tokens[j].text; token.value = lines[i].tokens[j].value; + token.size = lines[i].tokens[j].size; + token.operand = lines[i].tokens[j].operand; line.tokens.push_back(token); } result.push_back(line); |
