================
@@ -11,23 +11,22 @@ void test_vector_sve(svmfloat8_t a, svuint8_t c) {
   a / c;  // sve-error {{cannot convert between vector type 'svuint8_t' (aka 
'__SVUint8_t') and vector type 'svmfloat8_t' (aka '__SVMfloat8_t') as implicit 
conversion would cause truncation}}
 }
 
-
 #include <arm_neon.h>
 
 void test_vector(mfloat8x8_t a, mfloat8x16_t b, uint8x8_t c) {
-  a + b;  // neon-error {{invalid operands to binary expression ('mfloat8x8_t' 
(aka '__MFloat8x8_t') and 'mfloat8x16_t' (aka '__MFloat8x16_t'))}}
-  a - b;  // neon-error {{invalid operands to binary expression ('mfloat8x8_t' 
(aka '__MFloat8x8_t') and 'mfloat8x16_t' (aka '__MFloat8x16_t'))}}
-  a * b;  // neon-error {{invalid operands to binary expression ('mfloat8x8_t' 
(aka '__MFloat8x8_t') and 'mfloat8x16_t' (aka '__MFloat8x16_t'))}}
-  a / b;  // neon-error {{invalid operands to binary expression ('mfloat8x8_t' 
(aka '__MFloat8x8_t') and 'mfloat8x16_t' (aka '__MFloat8x16_t'))}}
-
-  a + c;  // neon-error {{cannot convert between vector and non-scalar values 
('mfloat8x8_t' (aka '__MFloat8x8_t') and 'uint8x8_t' (vector of 8 'uint8_t' 
values))}}
-  a - c;  // neon-error {{cannot convert between vector and non-scalar values 
('mfloat8x8_t' (aka '__MFloat8x8_t') and 'uint8x8_t' (vector of 8 'uint8_t' 
values))}}
-  a * c;  // neon-error {{cannot convert between vector and non-scalar values 
('mfloat8x8_t' (aka '__MFloat8x8_t') and 'uint8x8_t' (vector of 8 'uint8_t' 
values))}}
-  a / c;  // neon-error {{cannot convert between vector and non-scalar values 
('mfloat8x8_t' (aka '__MFloat8x8_t') and 'uint8x8_t' (vector of 8 'uint8_t' 
values))}}
-  c + b;  // neon-error {{cannot convert between vector and non-scalar values 
('uint8x8_t' (vector of 8 'uint8_t' values) and 'mfloat8x16_t' (aka 
'__MFloat8x16_t'))}}
-  c - b;  // neon-error {{cannot convert between vector and non-scalar values 
('uint8x8_t' (vector of 8 'uint8_t' values) and 'mfloat8x16_t' (aka 
'__MFloat8x16_t'))}}
-  c * b;  // neon-error {{cannot convert between vector and non-scalar values 
('uint8x8_t' (vector of 8 'uint8_t' values) and 'mfloat8x16_t' (aka 
'__MFloat8x16_t'))}}
-  c / b;  // neon-error {{cannot convert between vector and non-scalar values 
('uint8x8_t' (vector of 8 'uint8_t' values) and 'mfloat8x16_t' (aka 
'__MFloat8x16_t'))}}
+  a + b;  // neon-error {{invalid operands to binary expression ('mfloat8x8_t' 
(vector of 8 'mfloat8_t' values) and 'mfloat8x16_t' (vector of 16 'mfloat8_t' 
values))}}
+  a - b;  // neon-error {{invalid operands to binary expression ('mfloat8x8_t' 
(vector of 8 'mfloat8_t' values) and 'mfloat8x16_t' (vector of 16 'mfloat8_t' 
values))}}
+  a * b;  // neon-error {{invalid operands to binary expression ('mfloat8x8_t' 
(vector of 8 'mfloat8_t' values) and 'mfloat8x16_t' (vector of 16 'mfloat8_t' 
values))}}
+  a / b;  // neon-error {{invalid operands to binary expression ('mfloat8x8_t' 
(vector of 8 'mfloat8_t' values) and 'mfloat8x16_t' (vector of 16 'mfloat8_t' 
values))}}
+
+  a + c;  // neon-error {{invalid operands to binary expression ('mfloat8x8_t' 
(vector of 8 'mfloat8_t' values) and 'uint8x8_t' (vector of 8 'uint8_t' 
values))}}
+  a - c;  // neon-error {{invalid operands to binary expression ('mfloat8x8_t' 
(vector of 8 'mfloat8_t' values) and 'uint8x8_t' (vector of 8 'uint8_t' 
values))}}
+  a * c;  // neon-error {{invalid operands to binary expression ('mfloat8x8_t' 
(vector of 8 'mfloat8_t' values) and 'uint8x8_t' (vector of 8 'uint8_t' 
values))}}
+  a / c;  // neon-error {{invalid operands to binary expression ('mfloat8x8_t' 
(vector of 8 'mfloat8_t' values) and 'uint8x8_t' (vector of 8 'uint8_t' 
values))}}
+  c + b;  // neon-error {{invalid operands to binary expression ('uint8x8_t' 
(vector of 8 'uint8_t' values) and 'mfloat8x16_t' (vector of 16 'mfloat8_t' 
values))}}
+  c - b;  // neon-error {{invalid operands to binary expression ('uint8x8_t' 
(vector of 8 'uint8_t' values) and 'mfloat8x16_t' (vector of 16 'mfloat8_t' 
values))}}
+  c * b;  // neon-error {{invalid operands to binary expression ('uint8x8_t' 
(vector of 8 'uint8_t' values) and 'mfloat8x16_t' (vector of 16 'mfloat8_t' 
values))}}
+  c / b;  // neon-error {{invalid operands to binary expression ('uint8x8_t' 
(vector of 8 'uint8_t' values) and 'mfloat8x16_t' (vector of 16 'mfloat8_t' 
values))}}
 }
 __mfp8 test_static_cast_from_char(char in) {
----------------
CarolineConcatto wrote:

You are correct. I fixed that in a previous patch:[Clang][AArch64]Fix Name and 
Mangle name for scalar fp8 (#114983)

https://github.com/llvm/llvm-project/pull/114804
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to