[clang] [llvm] [RISCV][GISel] Add support for quadruple-precision floating point ABIs (PR #195166)

Craig Topper via cfe-commits cfe-commits at lists.llvm.org
Fri May 1 10:45:14 PDT 2026


================
@@ -189,7 +189,8 @@ class LLVM_LIBRARY_VISIBILITY RISCV32TargetInfo : public RISCVTargetInfo {
       return true;
     }
 
-    if (Name == "ilp32" || Name == "ilp32f" || Name == "ilp32d") {
+    if (Name == "ilp32" || Name == "ilp32f" || Name == "ilp32d" ||
+        Name == "ilp32q") {
----------------
topperc wrote:

Will this cause clang to accept the ABI name but crash in SelectionDAG?

https://github.com/llvm/llvm-project/pull/195166


More information about the cfe-commits mailing list