crange3.s

来自「俄罗斯高人Mamaich的Pocket gcc编译器(运行在PocketPC上)」· S 代码 · 共 35 行

S
35
字号
! There was a bug in which a .cranges data hunk could include a hunk of! code in front of it.  The following illustrates a function (start)! followed by constants output into .rodata, followed by a function! (continue), with a case-table (.L173) in it.  The bug included code from! the start of the function (continue) into the case-table range descriptor.	.text	.mode SHmediastart:	nop	.section .rodata	.long 0xabcdef01	.long 0x12345678	.textcontinue:	nop	nop	nop	.align 2	.align 2.L173:	.word 0x0123	.word 0x5678	.word 0x1234	.word 0x5678	.word 0x1234	.word 0x5678	.word 0x1234	.word 0xfede	nop	nop	nop	nop	nop

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?