(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
bfin/
builtins/
abs_fr1x32-1.c
       1  extern void abort (void);
       2  
       3  typedef long fract32;
       4  
       5  int main ()
       6  {
       7    fract32 t;
       8  
       9    t = __builtin_bfin_abs_fr1x32 (0x77777777);
      10    if (t != 0x77777777)
      11      abort ();
      12  
      13    return 0;
      14  }
      15