[clang] [llvm] Minimal support of floating-point operand bundles (PR #135658)
Serge Pavlov via cfe-commits
cfe-commits at lists.llvm.org
Wed Oct 22 11:23:21 PDT 2025
================
@@ -87,6 +134,23 @@ convertExceptionBehaviorToStr(fp::ExceptionBehavior UseExcept) {
return ExceptStr;
}
+std::optional<StringRef>
+convertExceptionBehaviorToBundle(fp::ExceptionBehavior UseExcept) {
+ std::optional<StringRef> ExceptStr;
+ switch (UseExcept) {
+ case fp::ebStrict:
+ ExceptStr = "strict";
----------------
spavloff wrote:
Done.
https://github.com/llvm/llvm-project/pull/135658
More information about the cfe-commits
mailing list