We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9107bf commit 08f72feCopy full SHA for 08f72fe
llvm/utils/TableGen/Common/CodeGenDAGPatterns.h
@@ -86,7 +86,7 @@ struct MachineValueTypeSet {
86
}
87
std::pair<MachineValueTypeSet &, bool> insert(MVT T) {
88
assert(T.SimpleTy < Capacity && "Capacity needs to be enlarged");
89
- bool V = count(T.SimpleTy);
+ bool V = count(T);
90
Words[T.SimpleTy / WordWidth] |= WordType(1) << (T.SimpleTy % WordWidth);
91
return {*this, V};
92
0 commit comments