[clang] [llvm] Minimal support of floating-point operand bundles (PR #135658)

Serge Pavlov via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 22 11:23:13 PDT 2025


================
@@ -61,6 +72,33 @@ std::optional<StringRef> convertRoundingModeToStr(RoundingMode UseRounding) {
   return RoundingStr;
 }
 
+std::optional<StringRef> convertRoundingModeToBundle(RoundingMode UseRounding) {
+  std::optional<StringRef> RoundingStr;
+  switch (UseRounding) {
+  case RoundingMode::Dynamic:
+    RoundingStr = "dynamic";
----------------
spavloff wrote:

Done.

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


More information about the llvm-commits mailing list