1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

[ObjCARC] Initialize return value

Mistakenly removed initialization of `Changed` in https://reviews.llvm.org/D87806.
This commit is contained in:
Arthur Eubanks 2020-09-21 11:02:37 -07:00
parent 7f64f1028d
commit 7dfbad6364

View File

@ -574,6 +574,7 @@ bool ObjCARCContract::run(Function &F, AAResults *A, DominatorTree *D) {
if (!Run)
return false;
Changed = false;
AA = A;
DT = D;
PA.setAA(A);