diff options
author | Sanjay Patel <spatel@rotateright.com> | 2018-10-22 21:37:02 +0000 |
---|---|---|
committer | Sanjay Patel <spatel@rotateright.com> | 2018-10-22 21:37:02 +0000 |
commit | dd1c3df72d33c426d08d20dc0f08b53a9075a7d4 (patch) | |
tree | debb32f15d7c13a4eb4f1b3e91f69249657fb4f2 /llvm/lib/Transforms/Scalar/Reassociate.cpp | |
parent | 791cfad3069f4afe3d7a71f2670ccc7a50edd51c (diff) | |
download | bcm5719-llvm-dd1c3df72d33c426d08d20dc0f08b53a9075a7d4.tar.gz bcm5719-llvm-dd1c3df72d33c426d08d20dc0f08b53a9075a7d4.zip |
[Reassociate] add 'using namespace' to reduce bloat; NFC
llvm-svn: 344959
Diffstat (limited to 'llvm/lib/Transforms/Scalar/Reassociate.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/Reassociate.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Scalar/Reassociate.cpp b/llvm/lib/Transforms/Scalar/Reassociate.cpp index 03cd7c10150..78e0fe47be0 100644 --- a/llvm/lib/Transforms/Scalar/Reassociate.cpp +++ b/llvm/lib/Transforms/Scalar/Reassociate.cpp @@ -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); |