OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / alpha-cix-1.c
1 /* Test that the CIX isa builtins compile.  */
2 /* { dg-do link { target alpha*-*-* } } */
3 /* { dg-options "-mcpu=ev67" } */
4
5 void test_CIX (long x)
6 {
7   volatile long sink;
8
9   sink = __builtin_alpha_cttz (x);
10   sink = __builtin_alpha_ctlz (x);
11   sink = __builtin_alpha_ctpop (x);
12 }
13
14 int main() { return 0; }