On 29 August 2013 15:49, Greg Clayton <[email protected]> wrote:

> Just launch a program and try to run:
>
> (lldb) expr (void *)malloc(123)
>
> This will tell you if simple things are working.

Thanks.  Without MCJIT I get:

(lldb) expr (void *)malloc(123)
error: Expression can't be run, because there is no JIT compiled function

and it works with MCJIT enabled:

(lldb) expr (void *)malloc(123)
(void *) $0 = 0x0000000801007080

so I'll remove the FreeBSD-specific #ifdef case.
_______________________________________________
lldb-dev mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev

Reply via email to