Re: [Qemu-devel] [PATCH 1/3] cputlb: Disable __always_inline__ without optimization

2019-09-11 Thread Peter Maydell
On Wed, 11 Sep 2019 at 02:43, Richard Henderson wrote: > > This forced inlining can result in missing symbols, > which makes a debugging build harder to follow. > > Reported-by: Peter Maydell > Signed-off-by: Richard Henderson > --- > accel/tcg/cputlb.c | 16 ++-- > 1 file changed,

[Qemu-devel] [PATCH 1/3] cputlb: Disable __always_inline__ without optimization

2019-09-10 Thread Richard Henderson
This forced inlining can result in missing symbols, which makes a debugging build harder to follow. Reported-by: Peter Maydell Signed-off-by: Richard Henderson --- accel/tcg/cputlb.c | 16 ++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/accel/tcg/cputlb.c b/accel