Displaying 2 results from an estimated 2 matches for "alonmg".
Did you mean:
along
2010 Jul 28
3
[LLVMdev] Function-at-a-time Processing
...sharing is actually correct since we want the
MCContext for the function pass manager to be the same as the one for
the module pass manager. That way globals, etc. have consistent
representations in both. Unfortunately, when the first function pass
manager gets deleted, it destroys the MCContext alonmg with it.
Actually, the AsmPrinter destroys the MCContext through a reference (!)
which makes things all the more confusing. When the module pass manager
comes along and tries of access an MCSection, everything blows up.
I had to re-add addAssemblyEmitter to LLVMTargetMachine to try to make
this w...
2010 Jul 28
0
[LLVMdev] Function-at-a-time Processing
...correct since we want the
> MCContext for the function pass manager to be the same as the one for
> the module pass manager. That way globals, etc. have consistent
> representations in both. Unfortunately, when the first function pass
> manager gets deleted, it destroys the MCContext alonmg with it.
> Actually, the AsmPrinter destroys the MCContext through a reference (!)
> which makes things all the more confusing. When the module pass manager
> comes along and tries of access an MCSection, everything blows up.
>
> I had to re-add addAssemblyEmitter to LLVMTargetMachi...