================
@@ -11224,6 +11224,10 @@ def err_ppc_invalid_use_mma_type : Error<
   "invalid use of PPC MMA type">;
 def err_ppc_invalid_test_data_class_type : Error<
   "expected a 'float', 'double' or '__float128' for the first argument">;
+def err_ppc_invalid_vector_type : Error<
+  "argument %0 must be of type %1">;
+def err_ppc_invalid_integer_type : Error<
+  "argument %0 must be of %1">;
----------------
lei137 wrote:

Can these be simplified into a general err message? eg:
```suggestion
def err_ppc_invalid_type : Error<
  "argument %0 must be of type %1">;
```

https://github.com/llvm/llvm-project/pull/154715
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to