https://bugs.kde.org/show_bug.cgi?id=387766

Jakub Jelinek <ja...@redhat.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ja...@redhat.com

--- Comment #1 from Jakub Jelinek <ja...@redhat.com> ---
But:

int
foo (int x)
{
  asm volatile ("sarl $16, %0; js 1f; incl %0; 1:" : "+r" (x));
  return x;
}

int
bar (int x)
{
  asm volatile ("sarl $16, %0; testl %0, %0; js 1f; incl %0; 1:" : "+r" (x));
  return x;
}

int
main ()
{
  __builtin_printf ("%x %x\n", foo (0x87654321), bar (0x87654321));
  __builtin_printf ("%x %x\n", foo (0x12345678), bar (0x12345678));
  return 0;
}

doesn't show any difference when running without and with valgrind.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to