Details
Details
Diff Detail
Diff Detail
- Build Status
Buildable 5347 Build 5347: arc lint + arc unit
Event Timeline
Comment Actions
A couple minor nits, but LGTM.
utils/TableGen/GlobalISelEmitter.cpp | ||
---|---|---|
1334–1348 | Can you also outline this one into some sort of "explainOperator"? | |
1336–1345 | All of these cases seem obvious from the name; maybe print them all as '(<operator>)' ? | |
1628 | Have isTrivialOperatorNode return an Error instead? That lets you do something like: if (auto Err = checkTrivialOperatorNode(Dst)) return failedImport("Dst pattern root isn't a trivial operator (" + toString(Err) + ")"); | |
1642 | Is llvm:: needed? |
All of these cases seem obvious from the name; maybe print them all as '(<operator>)' ?