Skip to content

Commit 42fba28

Browse files
committed
Remove erroneously added function and call
1 parent fb22e22 commit 42fba28

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

llvm/lib/CodeGen/ComplexDeinterleavingPass.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,6 @@ class ComplexDeinterleavingGraph {
335335
/// i: ai - br
336336
NodePtr identifyAdd(Instruction *Real, Instruction *Imag);
337337
NodePtr identifySymmetricOperation(Instruction *Real, Instruction *Imag);
338-
NodePtr identifyPartialReduction(Value *R, Value *I);
339338

340339
NodePtr identifyNode(Value *R, Value *I);
341340
NodePtr identifyNode(Value *R, Value *I, bool &FromCache);
@@ -916,8 +915,6 @@ ComplexDeinterleavingGraph::identifyNode(Value *R, Value *I, bool &FromCache) {
916915
return It->second;
917916
}
918917

919-
if (NodePtr CN = identifyPartialReduction(R, I))
920-
return CN;
921918

922919
bool IsReduction = RealPHI == R && (!ImagPHI || ImagPHI == I);
923920
if (!IsReduction && R->getType() != I->getType())

0 commit comments

Comments
 (0)