search for: somecond

Displaying 1 result from an estimated 1 matches for "somecond".

Did you mean: some_cond
2006 Dec 20
1
[LLVMdev] Instructions having variable names as operands
Dear Mr. Lattner: Thank you for kind information. I am still a little confused, though. In your example, %X = add int %Y, %Z is generated to add EAX, EBX I think EAX and EBX are the register names of X86. But, I should emit variable names instead of register names. For my example in the source code, int k; k = i + j; should be emit like this: reg k add i,j;k (If