diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-09-13 15:06:21 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-10-03 08:01:02 -0700 |
commit | f669c99241adfcd4186aebff6990cefdac25125b (patch) | |
tree | 74ebcf6ac99013e14557314eabd5077bc296f42a /target/rx | |
parent | 61cd357698231386f482f4257fc9fc1d66c750d8 (diff) | |
download | qemu-f669c99241adfcd4186aebff6990cefdac25125b.zip qemu-f669c99241adfcd4186aebff6990cefdac25125b.tar.gz qemu-f669c99241adfcd4186aebff6990cefdac25125b.tar.bz2 |
target/*: Add instance_align to all cpu base classes
The omission of alignment has technically been wrong since
269bd5d8f61, where QEMU_ALIGNED was added to CPUTLBDescFast.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/rx')
-rw-r--r-- | target/rx/cpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/rx/cpu.c b/target/rx/cpu.c index 157e57d..5155994 100644 --- a/target/rx/cpu.c +++ b/target/rx/cpu.c @@ -248,6 +248,7 @@ static const TypeInfo rx_cpu_info = { .name = TYPE_RX_CPU, .parent = TYPE_CPU, .instance_size = sizeof(RXCPU), + .instance_align = __alignof(RXCPU), .instance_init = rx_cpu_init, .abstract = true, .class_size = sizeof(RXCPUClass), |