Re: [lm-sensors] [PATCH 1/2] Create a DIV_ROUND_CLOSEST macro to do division with rounding

From: Jochen Voß
Date: Tue Nov 11 2008 - 18:58:14 EST


Hi,

2008/11/11 Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>:
> yup. I wonder why the compiler doesn't do that for itself - is there a
> case where it will generate a different result?

The test program

#include <stdio.h>
int
main()
{
signed int x = -1;
printf("%d %d\n", x/2, x>>1);
return 0;
}

says

0 -1

so it seems to make a difference.

All the best,
Jochen
--
http://seehuhn.de/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/