]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tcg: plug holes in struct TCGProfile
authorEmilio G. Cota <cota@braap.org>
Wed, 10 Oct 2018 14:48:52 +0000 (10:48 -0400)
committerRichard Henderson <richard.henderson@linaro.org>
Fri, 19 Oct 2018 01:58:10 +0000 (18:58 -0700)
This plugs two 4-byte holes in 64-bit.

Signed-off-by: Emilio G. Cota <cota@braap.org>
Message-Id: <20181010144853.13005-4-cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
tcg/tcg.h

index f9f12378e9d1cc847129a7628b5236ea2f361f47..d80ef2a883d18a2e7bc2da84e2200f8049f31fed 100644 (file)
--- a/tcg/tcg.h
+++ b/tcg/tcg.h
@@ -633,8 +633,8 @@ typedef struct TCGProfile {
     int64_t tb_count;
     int64_t op_count; /* total insn count */
     int op_count_max; /* max insn per TB */
-    int64_t temp_count;
     int temp_count_max;
+    int64_t temp_count;
     int64_t del_op_count;
     int64_t code_in_len;
     int64_t code_out_len;