Diff Detail
Unit Tests
| Time | Test | |
|---|---|---|
| 60,050 ms | x64 debian > MLIR.Examples/standalone::test.toy |
Event Timeline
LGTM, just a small style nit
| llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp | ||
|---|---|---|
| 1294 | small nit: not a fan of having V/Val in the same function, the names get confusing - maybe use something like Ret instead? Or rename the Val parameter to something more descriptive. | |
| 1307 | If I understand correctly this is a NFC, G_FPTRUNC was handled anyway by the V.convert call below, but now it's explicit? | |
| llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp | ||
|---|---|---|
| 1307 | Yes, the LLT-to-semantics is only used for fptrunc now. I'm thinking of moving FPTRUNC handling out of here entirely. It's an annoying special case complicating another patch I'm working on | |
small nit: not a fan of having V/Val in the same function, the names get confusing - maybe use something like Ret instead? Or rename the Val parameter to something more descriptive.