(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
mips/
truncate-4.c
       1  /* The and is performed in DI mode so there is no need for truncation.  */
       2  /* { dg-options "-mgp64" } */
       3  /* { dg-skip-if "code quality test" { *-*-* } { "-O0" } { "" } } */
       4  /* { dg-final { scan-assembler-not "\tsll\t" } } */
       5  
       6  NOMIPS16 unsigned long long
       7  f (unsigned long long s)
       8  {
       9    unsigned u = s & 0xfff;
      10    return u;
      11  }