(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr57108.c
       1  /* PR target/57108  */
       2  
       3  void __assert_func (void) __attribute__ ((__noreturn__));
       4  
       5  void
       6  ATATransfer (int num, int buffer)
       7  {
       8    int wordCount;
       9  
      10    while (num > 0)
      11      {
      12        wordCount = num * 512 / sizeof (int);
      13  
      14        ((0 == (buffer & 63)) ? (void)0 : __assert_func () );
      15        ((0 == (wordCount & 31)) ? (void)0 : __assert_func ());
      16      }
      17  }