search for: r226308

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

2015 Jan 16
2
[LLVMdev] Function calls only being JIT'd once by Kaleidoscope with MCJIT?
Oh - I know what this is. You were running this on Linux, right? On MacOS I think the symbol is getting double mangled while going through MCJIT::getSymbolAddress, hence the failure: The IR level foo function gets compiled to "_foo" in the object file, and then "_foo" gets mangled to "__foo" when we look it up. Linux doesn't do assembly level name-mangling, so
2015 Jan 16
3
[LLVMdev] Function calls only being JIT'd once by Kaleidoscope with MCJIT?
...f what MCJITHelper and friends is doing. I'll try and make time to prepare some patches along these lines, as well as updating future chapters with the same fix. Thanks for taking a look :) Charlie. On 16 January 2015 at 19:46, Lang Hames <lhames at gmail.com> wrote: > Committed in r226308. Thanks Charlie! > > - Lang. > > On Thu, Jan 15, 2015 at 4:41 PM, Lang Hames <lhames at gmail.com> wrote: >> >> Oh - I know what this is. You were running this on Linux, right? >> >> On MacOS I think the symbol is getting double mangled while going through...