Details
Details
- Reviewers
- None
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/lib/Target/PowerPC/PPCPreEmitPeephole.cpp | ||
---|---|---|
411 | This really sounds like a 'hack' for a specific case but hurt other normal cases. For example, machine-verifier knows that a def of a user in the same block is removed by mistake(Using an undefined physical register). But now even the def is removed by mistake, machine verifier still thinks that this is valid MIR because it is told the def is from outside but actually there is also no def outside the block. |
This really sounds like a 'hack' for a specific case but hurt other normal cases. For example, machine-verifier knows that a def of a user in the same block is removed by mistake(Using an undefined physical register). But now even the def is removed by mistake, machine verifier still thinks that this is valid MIR because it is told the def is from outside but actually there is also no def outside the block.