[llvm] [TableGen] Add a backend generating SDNode descriptions (PR #123002)

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 14 21:23:44 PST 2025


================
@@ -353,6 +353,8 @@ class SDNode<string opcode, SDTypeProfile typeprof,
   string SDClass = sdclass;
   let Properties = props;
   SDTypeProfile TypeProfile = typeprof;
+  bit IsStrictFP = false;
+  bits<64> TSFlags = 0;
----------------
topperc wrote:

TSFlags in SDNodeDesc in #119709 is declared as uint32_t. Are you going to enlarge that or should this be 32?

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


More information about the llvm-commits mailing list