search for: testsimpleiterator

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

2008 May 01
0
[LLVMdev] Some positive feedback :)
On Apr 30, 2008, at 9:42 PM, Talin wrote: > I continue to be pleasantly surprised at how well LLVM works. Working > with it is certainly a treat. > After making a few tweaks to my code generator, it passed all of the > tests...which was surprising enough. But then I turned on optimization > -- and lo and behold, it converted every one of those asserts to >
2008 May 01
2
[LLVMdev] Some positive feedback :)
I continue to be pleasantly surprised at how well LLVM works. Working with it is certainly a treat. As an example, tonight I implemented structure types (i.e. aggregate types that are passed as values, not references) in my front end, and I wrote up this little unit test: struct Vector { var x:int; var y:int; var z:int; def Vector(x:int, y:int, z:int) {