The condition Opcode <= std::numeric_limits<int>::max() will
always be true here.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Differential D148306
remove useless condition in assert in SelectionDAG.cpp XinWang10 on Apr 14 2023, 12:27 AM. Authored by
Details The condition Opcode <= std::numeric_limits<int>::max() will
Diff Detail
|
Should we use Opcode <= (unsigned)std::numeric_limits<int>::max()?