1# Source file used to test the call and callr instructions
2.text
3.set norelax
4foo:
5	call	func1
6	callr	r10
7# use external symbol
8	.global external
9	call	external
10func1:
11
12
13
14