diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/alpha-max-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/alpha-max-1.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/gcc/testsuite/gcc.dg/alpha-max-1.c b/gcc/testsuite/gcc.dg/alpha-max-1.c deleted file mode 100644 index b73bbb9..0000000 --- a/gcc/testsuite/gcc.dg/alpha-max-1.c +++ /dev/null @@ -1,27 +0,0 @@ -/* Test that the MAX isa builtins compile. */ -/* { dg-do link { target alpha*-*-* } } */ -/* { dg-options "-mcpu=pca56" } */ - -void test_MAX (long x, long y) -{ - volatile long sink; - - sink = __builtin_alpha_pklb (x); - sink = __builtin_alpha_pkwb (x); - sink = __builtin_alpha_unpkbl (x); - sink = __builtin_alpha_unpkbw (x); - - sink = __builtin_alpha_minub8 (0, x); - sink = __builtin_alpha_minub8 (1, x); - sink = __builtin_alpha_minub8 (x, y); - sink = __builtin_alpha_minsb8 (x, y); - sink = __builtin_alpha_minuw4 (x, y); - sink = __builtin_alpha_minsw4 (x, y); - sink = __builtin_alpha_maxub8 (x, y); - sink = __builtin_alpha_maxsb8 (x, y); - sink = __builtin_alpha_maxuw4 (x, y); - sink = __builtin_alpha_maxsw4 (x, y); - sink = __builtin_alpha_perr (x, y); -} - -int main() { return 0; } |