Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MachineOperand/MIParser: Do not print debug-use flag, infer it | Matthias Braun | 2018-10-30 | 1 | -2/+2 |
| | | | | | | | | | | | | | | The debug-use flag must be set exactly for uses on DBG_VALUEs. This is so obvious that it can be trivially inferred while parsing. This will reduce noise when printing while omitting an information that has little value to the user. The parser will keep recognizing the flag for compatibility with old `.mir` files. Differential Revision: https://reviews.llvm.org/D53903 llvm-svn: 345671 | ||||
* | [RegisterCoalescer] Use substPhysReg in reMaterializeTrivialDef | Bjorn Pettersson | 2018-08-21 | 1 | -0/+51 |
Summary: When RegisterCoalescer::reMaterializeTrivialDef is substituting a register use in a DBG_VALUE instruction, and the old register is a subreg, and the new register is a physical register, then we need to use substPhysReg in order to extract the correct subreg. Reviewers: wmi, aprantl Reviewed By: wmi Subscribers: hiraditya, MatzeB, qcolombet, tpr, llvm-commits Differential Revision: https://reviews.llvm.org/D50844 llvm-svn: 340326 |