forked from OSchip/llvm-project
[TableGen] Fix a typo
Check "Big" instead of "Small" in the second condition. Differential Revision: https://reviews.llvm.org/D61605 llvm-svn: 360106
This commit is contained in:
parent
6bc219e6bf
commit
55ed2f5309
|
@ -479,7 +479,7 @@ bool TypeInfer::EnforceSmallerThan(TypeSetByHwMode &Small,
|
|||
TypeSetByHwMode::SetType &S = Small.get(M);
|
||||
TypeSetByHwMode::SetType &B = Big.get(M);
|
||||
|
||||
if (any_of(S, isIntegerOrPtr) && any_of(S, isIntegerOrPtr)) {
|
||||
if (any_of(S, isIntegerOrPtr) && any_of(B, isIntegerOrPtr)) {
|
||||
auto NotInt = [](MVT VT) { return !isIntegerOrPtr(VT); };
|
||||
Changed |= berase_if(S, NotInt) |
|
||||
berase_if(B, NotInt);
|
||||
|
|
Loading…
Reference in New Issue