diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2016-06-21 19:48:12 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2016-06-21 19:48:12 +0000 |
commit | 48975881abde87dd8afc399678c00067044e09ce (patch) | |
tree | 60cb183325e84afb17995704eb47eb720aeda672 /llvm/lib/CodeGen/MachineVerifier.cpp | |
parent | df7103ddc55577af52e9184922851673c52208c9 (diff) | |
download | llvm-48975881abde87dd8afc399678c00067044e09ce.zip llvm-48975881abde87dd8afc399678c00067044e09ce.tar.gz llvm-48975881abde87dd8afc399678c00067044e09ce.tar.bz2 |
Delete some dead code.
Found by gcc 6.
llvm-svn: 273303
Diffstat (limited to 'llvm/lib/CodeGen/MachineVerifier.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineVerifier.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/MachineVerifier.cpp b/llvm/lib/CodeGen/MachineVerifier.cpp index eca9884..8b83e10 100644 --- a/llvm/lib/CodeGen/MachineVerifier.cpp +++ b/llvm/lib/CodeGen/MachineVerifier.cpp @@ -219,7 +219,6 @@ namespace { void report_context(const VNInfo &VNI) const; void report_context(SlotIndex Pos) const; void report_context_liverange(const LiveRange &LR) const; - void report_context_regunit(unsigned RegUnit) const; void report_context_lanemask(LaneBitmask LaneMask) const; void report_context_vreg(unsigned VReg) const; void report_context_vreg_regunit(unsigned VRegOrRegUnit) const; @@ -495,10 +494,6 @@ void MachineVerifier::report_context_liverange(const LiveRange &LR) const { errs() << "- liverange: " << LR << '\n'; } -void MachineVerifier::report_context_regunit(unsigned RegUnit) const { - errs() << "- regunit: " << PrintRegUnit(RegUnit, TRI) << '\n'; -} - void MachineVerifier::report_context_vreg(unsigned VReg) const { errs() << "- v. register: " << PrintReg(VReg, TRI) << '\n'; } |