search for: printallocainstruct

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

2012 Dec 27
0
[LLVMdev] llvm msil couple questions
...which I should probably figure out myself, but might as well ask. With regards to new/delete. I assume these are being translated into calls to lib-functions? Is pointer arithmetic and dereferencing already handled correctly? So: int *i = new int[5]; int x = *(i+3); delete[] i; I see the "printAllocaInstruction," is this used? I'll integrate your MSIL and compile, and I guess I'll start making a test suite. -tim On 12/27/12, João Matos <ripzonetriton at gmail.com> wrote: > I have been working on running C/C++ code into .NET too. > > I resurrected the old LLVM MSIL backend...