Displaying 4 results from an estimated 4 matches for "gasey".
Did you mean:
casey
2006 Apr 18
2
[LLVMdev] Re: how to code a loop in llvm assembly
I also suffer from the same C++ allergy notably shoot in foot with dynamic grammers and overloading.. creates gasey code feeling..especially in the backend.. :)cheers!
Simon Burton <simon at arrowtheory.com> wrote: On Sat, 15 Apr 2006 07:47:00 +0200
Oscar Fuentes wrote:
>
> BTW, Simon, is there a reason for writing LLVM assembler and not
> generating LLVM code directly?
You mean write C++ cod...
2006 Apr 18
0
[LLVMdev] Re: how to code a loop in llvm assembly
On Tue, 18 Apr 2006, Joseph Altea wrote:
> I also suffer from the same C++ allergy notably shoot in foot with
> dynamic grammers and overloading.. creates gasey code
> feeling..especially in the backend.. :)cheers!
I have no idea what this is supposed to mean: "creates gasey code
feeling..especially in the backend.."
However, if there is serious interest, many people would like an easy to
use C wrapper around the LLVM API's.
libjit,...
2006 Apr 17
0
[LLVMdev] Re: how to code a loop in llvm assembly
On Sat, 15 Apr 2006 07:47:00 +0200
Oscar Fuentes <oscarfv at telefonica.net> wrote:
>
> BTW, Simon, is there a reason for writing LLVM assembler and not
> generating LLVM code directly?
You mean write C++ code that calls the LLVM library ?
I have a mild C++ allergy that I don't wish to aggravate.
> The later is simpler and relieves you
> from some nasty burdens.
Yes,
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
>