Understanding new gcc prologue

后端 未结 1 1325
一生所求
一生所求 2021-01-15 13:19

I was wondering why did gcc introduce a new prologue (and epilogue as well) to functions - especially main() since I only analyzed it. For example, before, it was:



        
相关标签:
1条回答
  • 2021-01-15 13:59

    The purpose is to align the stack on a 16-byte boundary.

    0 讨论(0)
提交回复
热议问题