[Pixman] [PATCH] Use a compile-time constant for the K constraint in the MMX detection.

2012-07-01 Thread Søren Sandman
From: Søren Sandmann Pedersen s...@redhat.com When compiling with -O0, gcc doesn't understand that in signed char x = 0; ... asm (..., : K (x)); x is constant. Fix this by using an immediate constant instead of a variable. --- configure.ac |3 +-- 1 file changed,

Re: [Pixman] [PATCH] Use a compile-time constant for the K constraint in the MMX detection.

2012-07-01 Thread Matt Turner
On Sun, Jul 1, 2012 at 5:03 PM, Søren Sandman sandm...@cs.au.dk wrote: From: Søren Sandmann Pedersen s...@redhat.com When compiling with -O0, gcc doesn't understand that in signed char x = 0; ... asm (..., : K (x)); x is constant. Fix this by using an immediate