mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Fix typo that caused build failures for things trying to use m_Or.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26153 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f345fe4d9a
commit
c70cc35ddf
@ -130,8 +130,8 @@ inline BinaryOp_match<LHS, RHS, Instruction::And> m_And(const LHS &L,
|
||||
}
|
||||
|
||||
template<typename LHS, typename RHS>
|
||||
inline BinaryOp_match<LHS, RHS, Instruction::Rem> m_Or(const LHS &L,
|
||||
const RHS &R) {
|
||||
inline BinaryOp_match<LHS, RHS, Instruction::Or> m_Or(const LHS &L,
|
||||
const RHS &R) {
|
||||
return BinaryOp_match<LHS, RHS, Instruction::Or>(L, R);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user