search for: formatted_raw_output

Displaying 2 results from an estimated 2 matches for "formatted_raw_output".

2009 Jul 18
0
[LLVMdev] The mysterious case of the missing GlobalVariables.
If the globals don't have 'external' linkage, the optimizers will happily eliminate them. If they are marked external, attaching the .bc file, reduced if possible, will give people a better chance of helping you. On Sat, Jul 18, 2009 at 8:20 AM, Richard Pennington<rich at pennware.com> wrote: > Hi, > > I've recently been updating my stuff with LLVM TOT with the
2009 Jul 18
2
[LLVMdev] The mysterious case of the missing GlobalVariables.
Hi, I've recently been updating my stuff with LLVM TOT with the context changes, etc. I'm up to date as of yesterday. In my environment I do most of the translation in memory: 1. Parse the source file(s). 2. lower to LLVM module(s) 3. bc optimize module(s) 4. bc link module(s) 5. generate a .s file and assemble it 6. link .o's and libraries. This was working very well until a