This reverts commit r372940 which was an overreaction to a flaky buildbot.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@373005
91177308-0d34-0410-b5e6-
96231b3b80d8
SmallVector<CallEvent::FrameBindingTy, 16> InitialBindings;
Call.getInitialStackFrameContents(LCtx, InitialBindings);
- for (const auto &I : InitialBindings) {
- Loc L = I.first.castAs<Loc>();
- SVal V = I.second;
- Store = Bind(Store.getStore(), L, V);
- }
+ for (const auto &I : InitialBindings)
+ Store = Bind(Store.getStore(), I.first.castAs<Loc>(), I.second);
return Store;
}