1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

[Reassociate] add 'using namespace' to reduce bloat; NFC

llvm-svn: 344959
This commit is contained in:
Sanjay Patel 2018-10-22 21:37:02 +00:00
parent 998230f60c
commit 044bfe78a6

View File

@ -63,6 +63,7 @@
using namespace llvm;
using namespace reassociate;
using namespace PatternMatch;
#define DEBUG_TYPE "reassociate"
@ -125,10 +126,10 @@ XorOpnd::XorOpnd(Value *V) {
Value *V0 = I->getOperand(0);
Value *V1 = I->getOperand(1);
const APInt *C;
if (match(V0, PatternMatch::m_APInt(C)))
if (match(V0, m_APInt(C)))
std::swap(V0, V1);
if (match(V1, PatternMatch::m_APInt(C))) {
if (match(V1, m_APInt(C))) {
ConstPart = *C;
SymbolicPart = V0;
isOr = (I->getOpcode() == Instruction::Or);
@ -1304,7 +1305,7 @@ Value *ReassociatePass::OptimizeXor(Instruction *I,
Value *V = Ops[i].Op;
const APInt *C;
// TODO: Support non-splat vectors.
if (match(V, PatternMatch::m_APInt(C))) {
if (match(V, m_APInt(C))) {
ConstOpnd ^= *C;
} else {
XorOpnd O(V);