search for: b47e8516

Displaying 2 results from an estimated 2 matches for "b47e8516".

2011 Sep 12
0
[LLVMdev] Alias Analysis: zero terminated strings
Carl-Philip Hänsch wrote: > Hello, > > I'm developing a programming language that is optimized for strings. A > first hello world program shows me that llvm needs a lot more work on > zero terminated strings. > In the following example, I have an auto generated hello world example > optimized with -O3. The problem is, that the constant string is copied > into a malloced
2011 Sep 12
3
[LLVMdev] Alias Analysis: zero terminated strings
Hello, I'm developing a programming language that is optimized for strings. A first hello world program shows me that llvm needs a lot more work on zero terminated strings. In the following example, I have an auto generated hello world example optimized with -O3. The problem is, that the constant string is copied into a malloced mem area, then puts is called and then the memory is freed.