* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr57108.c
blob531af8d245d66e132cbb20ee34cde2ce11fa7b0b
1 /* PR target/57108 */
3 void __assert_func (void) __attribute__ ((__noreturn__));
5 void
6 ATATransfer (int num, int buffer)
8 int wordCount;
10 while (num > 0)
12 wordCount = num * 512 / sizeof (int);
14 ((0 == (buffer & 63)) ? (void)0 : __assert_func () );
15 ((0 == (wordCount & 31)) ? (void)0 : __assert_func ());