Displaying 2 results from an estimated 2 matches for "llvmgetvaluebynam".
Did you mean:
llvmgetvaluebyname
2012 Nov 22
0
[LLVMdev] Getting a named value in llvm-c
Hi Bill,
On 22/11/12 01:52, Bill Hart wrote:
> That's what I am doing of course, It;s just odd that I can get a
> global by name but not a local.
actually it's not that odd, since globals variables can be accessed by name
from other compilation units, while local variables cannot.
Ciao, Duncan.
>
> Bill.
>
> On 21 November 2012 09:35, Duncan Sands <baldrick at
2012 Nov 22
2
[LLVMdev] Getting a named value in llvm-c
That's what I am doing of course, It;s just odd that I can get a
global by name but not a local.
Bill.
On 21 November 2012 09:35, Duncan Sands <baldrick at free.fr> wrote:
> Hi Bill,
>
>
>> I am wondering if there is a way to get a value by name in the C
>> interface for the LLVM Jit?
>
>
> since a Value includes simple constants like 42 that have no name,