Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Pulls in llvm/llvm-project#125268 which is
necessary for #5563.
  • Loading branch information
makslevental authored Feb 6, 2025
1 parent 19f559a commit 04669ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/llvm-hash.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c118864223c6309378cd704f3406533474c2759f
ffe3129e9bdc146ee4d91e849173d1c64b1ae974
2 changes: 1 addition & 1 deletion lib/Target/LLVMIR/LLVMIRBreakPhiStruct.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ static bool processPhiStruct(PHINode *phiNode) {
unsigned numOperands = phiNode->getNumIncomingValues();
unsigned numScalarEl = STy->getNumElements();
Value *newStruct = UndefValue::get(STy);
builder.SetInsertPoint(phiNode->getParent()->getFirstNonPHI());
builder.SetInsertPoint(phiNode->getParent()->getFirstNonPHIIt());
llvm::IRBuilderBase::InsertPoint insertInsertPt = builder.saveIP();
for (unsigned i = 0; i < numScalarEl; i++) {
builder.SetInsertPoint(phiNode);
Expand Down

0 comments on commit 04669ef

Please sign in to comment.