[clang] [clang] Update SVE load and store intrinsics to have FP8 variants (PR #126726)

via cfe-commits cfe-commits at lists.llvm.org
Wed Feb 26 07:35:37 PST 2025


================
@@ -107,6 +107,9 @@ llvm::Type *CodeGenTypes::ConvertTypeForMem(QualType T) {
                                 MT->getNumRows() * MT->getNumColumns());
   }
 
+  if (T->isMFloat8Type())
+    return llvm::Type::getIntNTy(getLLVMContext(), 8);
----------------
Lukacma wrote:

```suggestion
    return llvm::Type::getInt8Ty(getLLVMContext());
```

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


More information about the cfe-commits mailing list