Displaying 2 results from an estimated 2 matches for "redefenit".
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
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 added 0 to it !
:)
Thanks
Jai