Displaying 2 results from an estimated 2 matches for "tp29987387p29996865".
2010 Oct 19
0
[LLVMdev] How to assign a constant to a register?
...d... I should've started thinking in SSA way all the time. I got it
mixed with common assembly language. So I must hold the initial value until
the first operation that deals with it has come, right?
--
View this message in context: http://old.nabble.com/How-to-assign-a-constant-to-a-register--tp29987387p29996865.html
Sent from the LLVM - Dev mailing list archive at Nabble.com.
2010 Oct 18
3
[LLVMdev] How to assign a constant to a register?
hi,
Well, there is no "Register" at the level of LLVM IR,
%x = add i32 %y, %z
means you define a value "x" by adding value "y" and value "z" together.
best regards
ether