This file is indexed.

/usr/share/doc/nasm/examples/jmp64.asm is in nasm 2.09.10-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
;Testname=test; Arguments=-fbin -ojmp64.bin; Files=stdout stderr jmp64.bin

	bits 64
	jmp rcx
	jmp [rax]
	jmp qword [rax]
	jmp far [rax]
	jmp far dword [rax]
	jmp far qword [rax]
	call rcx
	call [rax]
	call qword [rax]
	call far [rax]
	call far dword [rax]
	call far qword [rax]