! !Purpose: !This program tests if the assembler can handle !relocatable fields in pass 2. !Description: !We only test the four basic relocation types. .section ".text" start: !Branch Instructions ba label nop ba start nop !Call Instructions call label nop call start nop !Sethi and Or Instructions sethi %hi(start), %r3 or %r3, %lo(start), %r3 .section ".data" label: