Displaying 3 results from an estimated 3 matches for "d094d6e2".
2006 Apr 15
0
[LLVMdev] Re: how to code a loop in llvm assembly
On Sat, Apr 15, 2006 at 07:47:00AM +0200, Oscar Fuentes wrote:
> Simon Burton <simon at arrowtheory.com> writes:
> > I've read over the "LLVM Language Reference Manual"
> > a few times, and writing some ll code, but i'm stuck at
> > a very basic point. How to decrement a counter variable ?
[snip]
> > I guess I could malloc a variable and use
2006 Apr 15
1
[LLVMdev] Re: how to code a loop in llvm assembly
...nvert it to the phi-node form.
>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 189 bytes
Desc: This is a digitally signed message part
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20060415/d094d6e2/attachment.sig>
2006 Apr 15
2
[LLVMdev] Re: how to code a loop in llvm assembly
Simon Burton <simon at arrowtheory.com> writes:
> Hi,
>
> I've read over the "LLVM Language Reference Manual"
> a few times, and writing some ll code, but i'm stuck at
> a very basic point. How to decrement a counter variable ?
>
> int %count(int %n) {
> EntryBlock:
> %cond = seteq int %n, 0
> br bool %cond, label %Exit, label %Next
>