Skip to content

Commit e21aeb4

Browse files
committed
[CodeExtractor] Address review comments. NFC.
1 parent 8d22edf commit e21aeb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Utils/CodeExtractor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ void CodeExtractor::findAllocas(const CodeExtractorAnalysisCache &CEAC,
535535

536536
Instruction *Bitcast = cast<Instruction>(U);
537537
for (User *BU : Bitcast->users()) {
538-
IntrinsicInst *IntrInst = dyn_cast<LifetimeIntrinsic>(BU);
538+
auto *IntrInst = dyn_cast<LifetimeIntrinsic>(BU);
539539
if (!IntrInst)
540540
continue;
541541

0 commit comments

Comments
 (0)