- 论坛徽章:
- 0
|
本帖最后由 lxyscls_cu 于 2012-12-14 17:52 编辑
pmerofc 发表于 2012-12-14 17:18 ![]()
回复 1# _HellAngel_ - .file "point.c"
- .text
- .globl point
- .type point, @function
- point:
- pushl %ebp
- movl %esp, %ebp
- subl $16, %esp
- movl $0, -8(%ebp) <- c = 0;
- leal -8(%ebp), %eax <- &c;
- movl %eax, -4(%ebp) <- p = &c;
- leave
- ret
- .size point, .-point
- .globl main
- .type main, @function
- main:
- leal 4(%esp), %ecx
- andl $-16, %esp
- pushl -4(%ecx)
- pushl %ebp
- movl %esp, %ebp
- pushl %ecx
- call point
- movl $0, %eax
- popl %ecx
- popl %ebp
- leal -4(%ecx), %esp
- ret
- .size main, .-main
- .ident "GCC: (GNU) 4.1.1 20061011 (Red Hat 4.1.1-30)"
- .section .note.GNU-stack,"",@progbits
复制代码- void point(void)
- {
- int c = 0;
- int *p = &c;
- }
- int main(void)
- {
- point();
- return 0;
- }
复制代码 这个不就是地址么?{:3_189:}
您这给我凭空多了一个指针变量的感觉 |
|