diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-10-01 07:09:35 -0700 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2022-10-11 09:36:01 +0200 |
commit | e3a79e0e87831602e41819591a8e6dcc70a2a231 (patch) | |
tree | 453bc3fbd67400c5aaa24d9b7f9dd762578fb080 /target/i386/cpu-param.h | |
parent | 7db973bece487cb0bb7976f5b67a8ae02fd32df2 (diff) |
target/i386: Enable TARGET_TB_PCREL
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20221001140935.465607-27-richard.henderson@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/i386/cpu-param.h')
-rw-r--r-- | target/i386/cpu-param.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target/i386/cpu-param.h b/target/i386/cpu-param.h index 9740bd7abd..1e79389761 100644 --- a/target/i386/cpu-param.h +++ b/target/i386/cpu-param.h @@ -25,4 +25,8 @@ #define TARGET_PAGE_BITS 12 #define NB_MMU_MODES 3 +#ifndef CONFIG_USER_ONLY +# define TARGET_TB_PCREL 1 +#endif + #endif |