• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve2 -fallow-half-arguments-and-returns -fsyntax-only -verify %s
2 // RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64-none-linux-gnu -target-feature +sve2 -fallow-half-arguments-and-returns -fsyntax-only -verify %s
3 
4 #ifdef SVE_OVERLOADED_FORMS
5 // A simple used,unused... macro, long enough to represent any SVE builtin.
6 #define SVE_ACLE_FUNC(A1,A2_UNUSED,A3,A4_UNUSED) A1##A3
7 #else
8 #define SVE_ACLE_FUNC(A1,A2,A3,A4) A1##A2##A3##A4
9 #endif
10 
11 #include <arm_sve.h>
12 
test_svqshlu_n_s8_z(svbool_t pg,svint8_t op1)13 svuint8_t test_svqshlu_n_s8_z(svbool_t pg, svint8_t op1)
14 {
15   // expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [0, 7]}}
16   return SVE_ACLE_FUNC(svqshlu,_n_s8,_z,)(pg, op1, -1);
17 }
18 
test_svqshlu_n_s16_z(svbool_t pg,svint16_t op1)19 svuint16_t test_svqshlu_n_s16_z(svbool_t pg, svint16_t op1)
20 {
21   // expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [0, 15]}}
22   return SVE_ACLE_FUNC(svqshlu,_n_s16,_z,)(pg, op1, -1);
23 }
24 
test_svqshlu_n_s32_z(svbool_t pg,svint32_t op1)25 svuint32_t test_svqshlu_n_s32_z(svbool_t pg, svint32_t op1)
26 {
27   // expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [0, 31]}}
28   return SVE_ACLE_FUNC(svqshlu,_n_s32,_z,)(pg, op1, -1);
29 }
30 
test_svqshlu_n_s64_z(svbool_t pg,svint64_t op1)31 svuint64_t test_svqshlu_n_s64_z(svbool_t pg, svint64_t op1)
32 {
33   // expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [0, 63]}}
34   return SVE_ACLE_FUNC(svqshlu,_n_s64,_z,)(pg, op1, -1);
35 }
36 
test_svqshlu_n_s8_m(svbool_t pg,svint8_t op1)37 svuint8_t test_svqshlu_n_s8_m(svbool_t pg, svint8_t op1)
38 {
39   // expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [0, 7]}}
40   return SVE_ACLE_FUNC(svqshlu,_n_s8,_m,)(pg, op1, -1);
41 }
42 
test_svqshlu_n_s16_m(svbool_t pg,svint16_t op1)43 svuint16_t test_svqshlu_n_s16_m(svbool_t pg, svint16_t op1)
44 {
45   // expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [0, 15]}}
46   return SVE_ACLE_FUNC(svqshlu,_n_s16,_m,)(pg, op1, -1);
47 }
48 
test_svqshlu_n_s32_m(svbool_t pg,svint32_t op1)49 svuint32_t test_svqshlu_n_s32_m(svbool_t pg, svint32_t op1)
50 {
51   // expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [0, 31]}}
52   return SVE_ACLE_FUNC(svqshlu,_n_s32,_m,)(pg, op1, -1);
53 }
54 
test_svqshlu_n_s64_m(svbool_t pg,svint64_t op1)55 svuint64_t test_svqshlu_n_s64_m(svbool_t pg, svint64_t op1)
56 {
57   // expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [0, 63]}}
58   return SVE_ACLE_FUNC(svqshlu,_n_s64,_m,)(pg, op1, -1);
59 }
60 
test_svqshlu_n_s8_x(svbool_t pg,svint8_t op1)61 svuint8_t test_svqshlu_n_s8_x(svbool_t pg, svint8_t op1)
62 {
63   // expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [0, 7]}}
64   return SVE_ACLE_FUNC(svqshlu,_n_s8,_x,)(pg, op1, -1);
65 }
66 
test_svqshlu_n_s16_x(svbool_t pg,svint16_t op1)67 svuint16_t test_svqshlu_n_s16_x(svbool_t pg, svint16_t op1)
68 {
69   // expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [0, 15]}}
70   return SVE_ACLE_FUNC(svqshlu,_n_s16,_x,)(pg, op1, -1);
71 }
72 
test_svqshlu_n_s32_x(svbool_t pg,svint32_t op1)73 svuint32_t test_svqshlu_n_s32_x(svbool_t pg, svint32_t op1)
74 {
75   // expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [0, 31]}}
76   return SVE_ACLE_FUNC(svqshlu,_n_s32,_x,)(pg, op1, -1);
77 }
78 
test_svqshlu_n_s64_x(svbool_t pg,svint64_t op1)79 svuint64_t test_svqshlu_n_s64_x(svbool_t pg, svint64_t op1)
80 {
81   // expected-error-re@+1 {{argument value {{[0-9]+}} is outside the valid range [0, 63]}}
82   return SVE_ACLE_FUNC(svqshlu,_n_s64,_x,)(pg, op1, -1);
83 }
84