tcg/mips: Use qemu_build_not_reached for LO/HI_OFF
The new(ish) macro produces a compile-time error instead of a link-time error. Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
269e93ab76
commit
c64ed451a9
@ -37,11 +37,9 @@
|
|||||||
# define LO_OFF (MIPS_BE * 4)
|
# define LO_OFF (MIPS_BE * 4)
|
||||||
# define HI_OFF (4 - LO_OFF)
|
# define HI_OFF (4 - LO_OFF)
|
||||||
#else
|
#else
|
||||||
/* To assert at compile-time that these values are never used
|
/* Assert at compile-time that these values are never used for 64-bit. */
|
||||||
for TCG_TARGET_REG_BITS == 64. */
|
# define LO_OFF ({ qemu_build_not_reached(); 0; })
|
||||||
int link_error(void);
|
# define HI_OFF ({ qemu_build_not_reached(); 0; })
|
||||||
# define LO_OFF link_error()
|
|
||||||
# define HI_OFF link_error()
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_DEBUG_TCG
|
#ifdef CONFIG_DEBUG_TCG
|
||||||
|
Loading…
Reference in New Issue
Block a user