[clang] [CLANG][AArch64] Add the modal 8 bit floating-point scalar type (PR #97277)
Paul Walker via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 6 04:53:44 PDT 2024
================
@@ -3197,6 +3197,13 @@ void CastOperation::CheckCStyleCast() {
}
}
+ if ((DestType->isMFloat8Type() && !SrcType->isMFloat8Type()) ||
+ (!DestType->isMFloat8Type() && SrcType->isMFloat8Type())) {
----------------
paulwalker-arm wrote:
`DestType->isMFloat8Type() != SrcType->isMFloat8Type()` ?
https://github.com/llvm/llvm-project/pull/97277
More information about the cfe-commits
mailing list