[PATCH] D29715: LVI: Add a per-value worklist limit to LazyValueInfo.
Daniel Berlin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 8 06:54:12 PST 2017
dberlin marked 3 inline comments as done.
dberlin added inline comments.
================
Comment at: lib/Analysis/LazyValueInfo.cpp:668
+ if (processedCount > MaxProcessedPerValue) {
+ errs() << "Giving up on stack because we are getting too deep\n";
+ // Fill in the original values
----------------
djasper wrote:
> Have you intentionally changed this from DEBUG(dbgs() << ..)?
No, sorry, that was just from the pastebin'ing i was doing with you offline. i'll put it back.
https://reviews.llvm.org/D29715
More information about the llvm-commits
mailing list