diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-05-02 15:31:25 +0100 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-05-05 17:05:58 +0100 |
commit | 6ffaac9ca01094341ce64526411b8065df9ac39f (patch) | |
tree | 283698a1e978a151755a32e73d49297ab9c68cea /target/alpha | |
parent | 5fa7c0882d209124f5aa49dd0be5909dc0911b0b (diff) |
target/alpha: Use MO_ALIGN for system UNALIGN()
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/alpha')
-rw-r--r-- | target/alpha/translate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/alpha/translate.c b/target/alpha/translate.c index 9d25e21164..ffbac1c114 100644 --- a/target/alpha/translate.c +++ b/target/alpha/translate.c @@ -72,7 +72,7 @@ struct DisasContext { #ifdef CONFIG_USER_ONLY #define UNALIGN(C) (C)->unalign #else -#define UNALIGN(C) 0 +#define UNALIGN(C) MO_ALIGN #endif /* Target-specific return values from translate_one, indicating the |