diff options
| author | Alex Bennée <alex.bennee@linaro.org> | 2019-06-28 20:54:11 +0100 |
|---|---|---|
| committer | Alex Bennée <alex.bennee@linaro.org> | 2019-10-28 15:12:38 +0000 |
| commit | 504f73f7b3724c885317b6b236620e9048f50c0a (patch) | |
| tree | a2bce952b7dae13cae050b1d79cdbe9a9f3b0f20 /scripts/tracetool | |
| parent | 291987c3068fb083abebb69701d04c5bab60f310 (diff) | |
| download | focaccia-qemu-504f73f7b3724c885317b6b236620e9048f50c0a.tar.gz focaccia-qemu-504f73f7b3724c885317b6b236620e9048f50c0a.zip | |
trace: add mmu_index to mem_info
We are going to re-use mem_info later for plugins and will need to track the mmu_idx for softmmu code. Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'scripts/tracetool')
| -rw-r--r-- | scripts/tracetool/transform.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/tracetool/transform.py b/scripts/tracetool/transform.py index e18b05315e..2ca9286046 100644 --- a/scripts/tracetool/transform.py +++ b/scripts/tracetool/transform.py @@ -83,6 +83,7 @@ TCG_2_HOST = { HOST_2_TCG_COMPAT = { "uint8_t": "uint32_t", + "uint16_t": "uint32_t", } |