views:

217

answers:

2

Hello,

Is there any converter to convert a C function into ARM (v6) ASM code or I need to do it manually ?

I am trying to gain the performance of a C function on Iphone.

+2  A: 

tool that does it is called compiler :) take a look here: http://www.keil.com/arm/

Andrey
+1  A: 

Supposing you're in XCode, open the source file and select Build => Show Assembly Code.

Potatoswatter
I think that is what I need but definitely good finiding, Thanks
Sridhar