[llvm] 7171a9c - [SelectionDAG] Fix typo in comment glueged->glued. NFC (#167006)

via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 10 08:37:33 PST 2025


Author: Craig Topper
Date: 2025-11-10T08:37:29-08:00
New Revision: 7171a9cfc4ae98467800de966d6ed3cb424ec460

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

LOG: [SelectionDAG] Fix typo in comment glueged->glued. NFC (#167006)

This was the result of a search and replace when "flag" was renamed to
"glue". This originally said "flagged".

Added: 
    

Modified: 
    llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index 8bc5d2f3e421f..e78dfb12505c7 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -2448,7 +2448,7 @@ bool SelectionDAGISel::IsLegalToFold(SDValue N, SDNode *U, SDNode *Root,
   // a cycle in the scheduling graph.
 
   // If the node has glue, walk down the graph to the "lowest" node in the
-  // glueged set.
+  // glued set.
   EVT VT = Root->getValueType(Root->getNumValues()-1);
   while (VT == MVT::Glue) {
     SDNode *GU = Root->getGluedUser();


        


More information about the llvm-commits mailing list