1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* patch-235.c - used shift insetad of rotate instruction. */ #include <testfwk.h> unsigned long sss(unsigned long a) { return a >> 9; } void testBug(void) { ASSERT(sss(0x55555555) == 0x002aaaaa); }