diff options
Diffstat (limited to 'llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp')
-rw-r--r-- | llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp b/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp index de36d5cda0c..3636a1d95fc 100644 --- a/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp +++ b/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp @@ -183,12 +183,6 @@ bool Instruction::hasAliasingImplicitRegisters() const { return ImplDefRegs.anyCommon(ImplUseRegs); } -bool Instruction::hasAliasingImplicitRegistersThrough( - const Instruction &OtherInstr) const { - return ImplDefRegs.anyCommon(OtherInstr.ImplUseRegs) && - OtherInstr.ImplDefRegs.anyCommon(ImplUseRegs); -} - bool Instruction::hasAliasingRegistersThrough( const Instruction &OtherInstr) const { return AllDefRegs.anyCommon(OtherInstr.AllUseRegs) && |