Displaying 2 results from an estimated 2 matches for "_t5".
Did you mean:
_t
2004 Dec 12
3
[LLVMdev] redefenition of variables in LLVM
Hi,
%_t4 = add int 23 , 0
%_t5 = add int %_t4 , 1
%_t4 = add int %_t5 , 0
the above line of code give an error when i try to convert to
bytecode. The error is that I am trying to redefine %_t4. Is there a
way to reassign a variable with another value. Also is there a way to
assign a value to a variable. I couldnt do that so I...
2004 Dec 12
0
[LLVMdev] redefenition of variables in LLVM
On Sun, 12 Dec 2004, Jai Vasanth wrote:
> Hi,
>
>
> %_t4 = add int 23 , 0
> %_t5 = add int %_t4 , 1
> %_t4 = add int %_t5 , 0
>
> the above line of code give an error when i try to convert to
> bytecode. The error is that I am trying to redefine %_t4. Is there a
> way to reassign a variable with another value. Also is there a way to
> assign a value to a vari...