[llvm] [AArch64] Fix SDNode type mismatches between *.td files and ISel (PR #116523)
    David Green via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Wed Nov 20 00:06:25 PST 2024
    
    
  
================
@@ -438,9 +438,13 @@ def SDT_AArch64FCCMP : SDTypeProfile<1, 5,
                                       SDTCisInt<3>,
                                       SDTCisInt<4>,
                                       SDTCisVT<5, i32>]>;
-def SDT_AArch64FCmp   : SDTypeProfile<0, 2,
-                                   [SDTCisFP<0>,
-                                    SDTCisSameAs<0, 1>]>;
+
+def SDT_AArch64FCmp   : SDTypeProfile<1, 2, [
+  SDTCisVT<0, i32>,   // out flags
----------------
davemgreen wrote:
Can you format this like the ones above? Same for AArch64mrs.
https://github.com/llvm/llvm-project/pull/116523
    
    
More information about the llvm-commits
mailing list