Fortran: fix dependency checks for inquiry refs [PR115039]
[official-gcc.git] / gcc / testsuite / gcc.target / nvptx / umul-wide64.c
blob4cbdf0ba6d1e1c3f7039f7eb815d7dee826b5cf5
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 typedef unsigned int __attribute ((mode(TI))) uti_t;
6 uti_t foo(unsigned long x, unsigned long y)
8 return (uti_t)x * (uti_t)y;
11 /* { dg-final { scan-assembler-times "mul.lo.u64" 1 } } */
12 /* { dg-final { scan-assembler-times "mul.hi.u64" 1 } } */