[clang] [llvm] [SystemZ] Add support for half (fp16) (PR #109164)
Jonas Paulsson via cfe-commits
cfe-commits at lists.llvm.org
Wed Oct 30 08:37:45 PDT 2024
================
@@ -16534,7 +16534,7 @@ ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc,
PromoteType = QualType();
}
}
- if (TInfo->getType()->isSpecificBuiltinType(BuiltinType::Float))
+ if (TInfo->getType()->isFloat16Type() || TInfo->getType()->isFloat32Type())
----------------
JonPsson1 wrote:
ah, ok - removed.
https://github.com/llvm/llvm-project/pull/109164
More information about the cfe-commits
mailing list