------- Additional Comments From pinskia at gcc dot gnu dot org  2005-06-15 
21:18 -------
(In reply to comment #6)
>  SAR r/m32, 1    Signed divide* r/m32 by 2, once

Huh, I think that is wrong, witness:
#include <stdio.h>
int f(int a)
{
  return a >> 1;
}
int main(void)
{
  int g = f(-5);
  printf("%d\n", g);
}

prints -3.

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22072

Reply via email to