blob: 4cbdf0ba6d1e1c3f7039f7eb815d7dee826b5cf5 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2" } */
typedef unsigned int __attribute ((mode(TI))) uti_t;
uti_t foo(unsigned long x, unsigned long y)
{
return (uti_t)x * (uti_t)y;
}
/* { dg-final { scan-assembler-times "mul.lo.u64" 1 } } */
/* { dg-final { scan-assembler-times "mul.hi.u64" 1 } } */