Imported Upstream version 2.9.0
[debian/cc1111] / support / regression / tests / bug-524685.c
1 /* Division by powers of two.
2  */
3 #include <testfwk.h>
4
5 void
6 testDivPow2(void)
7 {
8   volatile int left;
9
10   left = -18;
11   ASSERT(left/4 == (-18/4));
12 }