问题
What does this expression mean:
.-main
in context of:
.size main, .-main
?
回答1:
Here, the dot .
means "current location".
Then .-main
would be the distance to the start of main. If placed at the end of main, it would also be the size of main.
来源:https://stackoverflow.com/questions/11058361/meaning-of-main-expression