diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2014-10-24 12:19:11 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-10-24 12:19:11 +0100 |
commit | 6aea44fc2b842e14de18006ed7609f4a90cd3bf4 (patch) | |
tree | 7aab53b4e2e0c8376c752c2844c5805a8448bb85 /disas/arm-a64.cc | |
parent | c6faa758e30c3563f22ffbee11bf206a3ee952c8 (diff) | |
download | qemu-6aea44fc2b842e14de18006ed7609f4a90cd3bf4.zip qemu-6aea44fc2b842e14de18006ed7609f4a90cd3bf4.tar.gz qemu-6aea44fc2b842e14de18006ed7609f4a90cd3bf4.tar.bz2 |
disas/libvixl: Update to libvixl 1.6
Update our copy of libvixl to upstream 1.6. There are no
changes of any particular interest to QEMU, so this is simply
keeping up with current upstream.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1412091418-25744-1-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'disas/arm-a64.cc')
-rw-r--r-- | disas/arm-a64.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/disas/arm-a64.cc b/disas/arm-a64.cc index 162be0c..ca29f6f 100644 --- a/disas/arm-a64.cc +++ b/disas/arm-a64.cc @@ -39,7 +39,7 @@ public: ~QEMUDisassembler() { } protected: - void ProcessOutput(Instruction *instr) { + virtual void ProcessOutput(const Instruction *instr) { fprintf(stream_, "%08" PRIx32 " %s", instr->InstructionBits(), GetOutput()); } |