Skip to content

Commit 453324a

Browse files
committed
Replaced auto with actual types
1 parent 20701ac commit 453324a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/AArch64/AArch64ISelLowering.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27296,9 +27296,9 @@ void AArch64TargetLowering::ReplaceNodeResults(
2729627296
return;
2729727297
}
2729827298
case Intrinsic::aarch64_sme_in_streaming_mode: {
27299-
auto DL = SDLoc(N);
27299+
SDLoc DL(N);
2730027300
SDValue Chain = DAG.getEntryNode();
27301-
auto RuntimePStateSM =
27301+
SDValue RuntimePStateSM =
2730227302
getRuntimePStateSM(DAG, Chain, DL, N->getValueType(0));
2730327303
Results.push_back(
2730427304
DAG.getNode(ISD::TRUNCATE, DL, MVT::i1, RuntimePStateSM));

0 commit comments

Comments
 (0)