qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 3/4] tcg: plug holes in struct TCGProfile


From: Emilio G. Cota
Subject: [Qemu-devel] [PATCH 3/4] tcg: plug holes in struct TCGProfile
Date: Wed, 10 Oct 2018 10:48:52 -0400

This plugs two 4-byte holes in 64-bit.

Signed-off-by: Emilio G. Cota <address@hidden>
---
 tcg/tcg.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tcg/tcg.h b/tcg/tcg.h
index f9f12378e9..d80ef2a883 100644
--- 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;
-- 
2.17.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]