[android-developers] Re: Function inlining

2009-10-12 Thread fadden
On Oct 7, 11:28 am, Viktor Linder linder.vik...@gmail.com wrote: On a related note, has anyone used a preprocessor of some sort and managed to integrate it with Eclipse? Try ProGuard, proguard.sourceforge.net. There are a couple of optimizations that don't interact well with the Dalvik

[android-developers] Re: Function inlining

2009-10-07 Thread Romain Guy
There's no inlining at the moment. On Wed, Oct 7, 2009 at 6:31 AM, Viktor Linder linder.vik...@gmail.com wrote: Hi! I recently wrote a quick test that does this: private static int test_f(int i) { return i * 42; } ... int z = 41; for(int i = 0; i 1; ++i) { z = z*42; }         //

[android-developers] Re: Function inlining

2009-10-07 Thread Viktor Linder
Ok. On a related note, has anyone used a preprocessor of some sort and managed to integrate it with Eclipse? Best regards, Viktor Linder On 7 Okt, 18:32, Romain Guy romain...@google.com wrote: There's no inlining at the moment. On Wed, Oct 7, 2009 at 6:31 AM, Viktor Linder