Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Unit Tests
Event Timeline
llvm/lib/Target/AVR/AVRISelLowering.cpp | ||
---|---|---|
659 | Only a zero constant with be put at left by previous DAG transform, all other non-zero constant are dropped as RHS. So we have to handle it specially. | |
llvm/test/CodeGen/AVR/cmp.ll | ||
213 | x > 0 is compiled to 0 < x, and the low 0 value byte and the high 0 value byte are represented by the zero register. |
Only a zero constant with be put at left by previous DAG transform, all other non-zero constant are dropped as RHS. So we have to handle it specially.