2018-02-09 Sebastian Perta <sebastian.perta@renesas.com>
[official-gcc.git] / gcc / testsuite / gcc.target / alpha / cix-1.c
blob53aa6efd8e871b979030896f0f6d869f7b647018
1 /* Test that the CIX isa builtins compile. */
2 /* { dg-do link } */
3 /* { dg-options "-mcpu=ev67" } */
5 void test_CIX (long x)
7 volatile long sink;
9 sink = __builtin_alpha_cttz (x);
10 sink = __builtin_alpha_ctlz (x);
11 sink = __builtin_alpha_ctpop (x);
14 int main() { return 0; }