标签: c xcode assembly compiler-construction
我在C中生成了一个新的Xcode项目,并立即查看了它生成的程序集。
这是C代码:
#include <stdio.h> int main(int argc, const char * argv[]) { // insert code here... printf("Hello, World!\n"); return 0; }
汇编代码差不多有400行。这看起来有点多...... 有人可以解释为什么会这样吗? 它还使用什么编译器?