Displaying 2 results from an estimated 2 matches for "erpass".
Did you mean:
rpass
2017 Aug 07
2
vrp
...Aug 7, 2017 at 2:14 AM, Anastasiya Ruzhanskaya via llvm-dev
>> <llvm-dev at lists.llvm.org> wrote:
>> > I am trying to print it like this (maybe here is smth wrong?)
>> >
>> >
>> > LazyValueInfo &LV = getAnalysis<LazyValueInfoWrapp
>> erPass>().getLVI();
>> > DominatorTree &DT =
>> > getAnalysis<DominatorTreeWrapperPass>().getDomTree();
>> > LV.printLVI(F, DT, llvm::outs());
>>
>> The value analysis in llvm is lazy (hence, LVI), so you're trying to
>> print an empty...
2017 Aug 07
2
vrp
On Mon, Aug 7, 2017 at 2:14 AM, Anastasiya Ruzhanskaya via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
> I am trying to print it like this (maybe here is smth wrong?)
>
>
> LazyValueInfo &LV = getAnalysis<LazyValueInfoWrapperPass>().getLVI();
> DominatorTree &DT =
> getAnalysis<DominatorTreeWrapperPass>().getDomTree();
> LV.printLVI(F, DT, llvm::outs());
The value analysis in llvm is lazy (hence, LVI), so you're trying to
print an empty cache, I guess.
> for (BasicBlock &BB : F...