Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gcc.target / sparc / lzd.c
blobbc2b8522be8af72ef7fe6f5dcc2388ceac294b45
1 /* { dg-do compile } */
2 /* { dg-options "-mvis3" } */
3 int test_clz(int a)
5 return __builtin_clz(a);
8 long test_clzl(long a)
10 return __builtin_clzl(a);
13 long long test_clzll(long long a)
15 return __builtin_clzll(a);
18 /* { dg-final { scan-assembler-times "lzd\t%" 3 } } */