diff options
author | Fangrui Song <maskray@google.com> | 2018-07-16 18:51:40 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2018-07-16 18:51:40 +0000 |
commit | cb0bab86b3f47c82ce415a5e7d12849dbdd58699 (patch) | |
tree | fa3d88a9a60bd01535535cd6d14849a3a3ff2711 /llvm/lib/CodeGen/MachineVerifier.cpp | |
parent | b05be5f4b4cc5d426dd8ee7aac8b83556453a766 (diff) | |
download | llvm-cb0bab86b3f47c82ce415a5e7d12849dbdd58699.zip llvm-cb0bab86b3f47c82ce415a5e7d12849dbdd58699.tar.gz llvm-cb0bab86b3f47c82ce415a5e7d12849dbdd58699.tar.bz2 |
[CodeGen] Fix inconsistent declaration parameter name
llvm-svn: 337200
Diffstat (limited to 'llvm/lib/CodeGen/MachineVerifier.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineVerifier.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/MachineVerifier.cpp b/llvm/lib/CodeGen/MachineVerifier.cpp index 310316c..d644e41 100644 --- a/llvm/lib/CodeGen/MachineVerifier.cpp +++ b/llvm/lib/CodeGen/MachineVerifier.cpp @@ -251,16 +251,16 @@ namespace { void report_context_liverange(const LiveRange &LR) const; void report_context_lanemask(LaneBitmask LaneMask) const; void report_context_vreg(unsigned VReg) const; - void report_context_vreg_regunit(unsigned VRegOrRegUnit) const; + void report_context_vreg_regunit(unsigned VRegOrUnit) const; void verifyInlineAsm(const MachineInstr *MI); void checkLiveness(const MachineOperand *MO, unsigned MONum); void checkLivenessAtUse(const MachineOperand *MO, unsigned MONum, - SlotIndex UseIdx, const LiveRange &LR, unsigned Reg, + SlotIndex UseIdx, const LiveRange &LR, unsigned VRegOrUnit, LaneBitmask LaneMask = LaneBitmask::getNone()); void checkLivenessAtDef(const MachineOperand *MO, unsigned MONum, - SlotIndex DefIdx, const LiveRange &LR, unsigned Reg, + SlotIndex DefIdx, const LiveRange &LR, unsigned VRegOrUnit, LaneBitmask LaneMask = LaneBitmask::getNone()); void markReachable(const MachineBasicBlock *MBB); |