[llvm] abbf480 - [SelectionDAG] Add PseudoProbeSDNode to LargestSDNode to fix 32-bt build break.

Hongtao Yu via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 24 15:35:45 PST 2020


Author: Hongtao Yu
Date: 2020-11-24T15:35:08-08:00
New Revision: abbf4802bb4fb519dce436ba16d90c3eeb1135b1

URL: https://github.com/llvm/llvm-project/commit/abbf4802bb4fb519dce436ba16d90c3eeb1135b1
DIFF: https://github.com/llvm/llvm-project/commit/abbf4802bb4fb519dce436ba16d90c3eeb1135b1.diff

LOG: [SelectionDAG] Add PseudoProbeSDNode to LargestSDNode to fix 32-bt build break.

Added: 
    

Modified: 
    llvm/include/llvm/CodeGen/SelectionDAGNodes.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
index 83158e240594..7da81935904d 100644
--- a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+++ b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
@@ -2630,7 +2630,8 @@ template <> struct GraphTraits<SDNode*> {
 /// with 4 and 8 byte pointer alignment, respectively.
 using LargestSDNode = AlignedCharArrayUnion<AtomicSDNode, TargetIndexSDNode,
                                             BlockAddressSDNode,
-                                            GlobalAddressSDNode>;
+                                            GlobalAddressSDNode,
+                                            PseudoProbeSDNode>;
 
 /// The SDNode class with the greatest alignment requirement.
 using MostAlignedSDNode = GlobalAddressSDNode;


        


More information about the llvm-commits mailing list