Re: [Mesa-dev] [PATCH] llvmpipe: add cc clobber to inline asm

2018-08-20 Thread Roland Scheidegger
Am 20.08.2018 um 23:31 schrieb Grazvydas Ignotas: > The bsr instruction modifies flags, so that needs to be indicated to the > compiler. No effect on generated code, but still needed for correctness. > --- > src/gallium/drivers/llvmpipe/lp_setup_tri.c | 3 ++- > 1 file changed, 2 insertions(+), 1

[Mesa-dev] [PATCH] llvmpipe: add cc clobber to inline asm

2018-08-20 Thread Grazvydas Ignotas
The bsr instruction modifies flags, so that needs to be indicated to the compiler. No effect on generated code, but still needed for correctness. --- src/gallium/drivers/llvmpipe/lp_setup_tri.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/llvmpipe/lp_se