diff options
author | Sam Elliott <quic_aelliott@quicinc.com> | 2024-12-04 09:19:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-04 09:19:13 +0000 |
commit | 73731d6873b6fb0757c3065aaf2452eaccd0eebc (patch) | |
tree | 8461fcf75891d7be4375b6142b7b4e1811ba107c /llvm/lib | |
parent | 720864907d1acd9766b5f8140065938c1083cba8 (diff) | |
download | llvm-73731d6873b6fb0757c3065aaf2452eaccd0eebc.zip llvm-73731d6873b6fb0757c3065aaf2452eaccd0eebc.tar.gz llvm-73731d6873b6fb0757c3065aaf2452eaccd0eebc.tar.bz2 |
[llvm-tblgen] Increase Coverage Index Size (#118329)
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 0d99ae9..3000dfd 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -4045,6 +4045,8 @@ void SelectionDAGISel::SelectCodeCommon(SDNode *NodeToMatch, // So it should be safe to assume that this node has been selected unsigned index = MatcherTable[MatcherIndex++]; index |= (MatcherTable[MatcherIndex++] << 8); + index |= (MatcherTable[MatcherIndex++] << 16); + index |= (MatcherTable[MatcherIndex++] << 24); dbgs() << "COVERED: " << getPatternForIndex(index) << "\n"; dbgs() << "INCLUDED: " << getIncludePathForIndex(index) << "\n"; continue; |