[all-commits] [llvm/llvm-project] 28c3a7: [Clang][RISCV] Improve diagnostic message for full...
Yueh-Ting (eop) Chen via All-commits
all-commits at lists.llvm.org
Tue Jul 18 19:40:01 PDT 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 28c3a74a5c6c7ed1ac97a010ca080eaacfd7f324
https://github.com/llvm/llvm-project/commit/28c3a74a5c6c7ed1ac97a010ca080eaacfd7f324
Author: eopXD <yueh.ting.chen at gmail.com>
Date: 2023-07-18 (Tue, 18 Jul 2023)
Changed paths:
M clang/include/clang/Basic/riscv_vector.td
M clang/include/clang/Support/RISCVVIntrinsicUtils.h
M clang/lib/Sema/SemaChecking.cpp
M clang/lib/Sema/SemaRISCVVectorLookup.cpp
A clang/test/Sema/riscv-vector-v-check.c
M clang/utils/TableGen/RISCVVEmitter.cpp
Log Message:
-----------
[Clang][RISCV] Improve diagnostic message for full multiply intrinsics
The full multiply intrinsics are not included for EEW=64 in Zve64*.
They require the V extension to be enabled.
This commit improves diagnostic message from
```
<source>:4:10: error: call to undeclared function '__riscv_vsmul_vv_i64m1';
4 | return __riscv_vsmul_vv_i64m1(op1, op2, __RISCV_VXRM_RNU, vl);
```
to
```
test.c:5:10: error: builtin requires: v
5 | return __riscv_vsmul_vv_i64m1(op1, op2, __RISCV_VXRM_RNU, vl);
```
Reviewed By: craig.topper
Differential Revision: https://reviews.llvm.org/D155416
More information about the All-commits
mailing list