mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
Fix typo that caused build failures for things trying to use m_Or.
llvm-svn: 26153
This commit is contained in:
parent
24d29462d2
commit
307a2b55bb
@ -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…
x
Reference in New Issue
Block a user