GNU binutils是GNU交叉工具链中的一个源码包

源代码在线查看: x.s

软件大小: 15994 K
上传用户: lixuecheng
关键词: GNU binutils 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				;# Main file, x.s, with the program (_start) referring to two				;# linkonce functions fn and fn2.  The functions fn and fn2 are				;# supposed to be equivalent of C++ template instantiations; the				;# main file instantiates fn.  There's the equivalent of an FDE				;# entry in .eh_frame, referring to fn via a local label.								 .text				 .global _start				_start:				 .long fn				 .long fn2								 .section .gnu.linkonce.t.fn,"ax",@progbits				 .weak fn				 .type fn,@function				fn:				L:a:				 .long 1				 .long 2				L:b:				 .size fn,L:b-L:a								 .section .eh_frame,"aw",@progbits				 .long 2				 .long L:a				 .long L:b-L:a							

相关资源