summaryrefslogtreecommitdiff
path: root/test/MC/ELF/call-abs.s
blob: 885c2d19bad2adc30bffa32eee132af5c310a104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// RUN: llvm-mc -filetype=obj -triple i686-pc-linux-gnu %s -o - | elf-dump | FileCheck %s

	.text
	.globl	f
	.type	f,@function
f:                                      # @f
# BB#0:                                 # %entry
	subl	$4, %esp
	calll	42
	incl	%eax
	addl	$4, %esp
	ret
.Ltmp0:
	.size	f, .Ltmp0-f

	.section	.note.GNU-stack,"",@progbits

// CHECK:      ('_relocations', [
// CHECK-NEXT:  # Relocation 0x00000000
// CHECK-NEXT:  (('r_offset', 0x00000004)
// CHECK-NEXT:   ('r_sym', 0x00000000)
// CHECK-NEXT:   ('r_type', 0x00000002)
// CHECK-NEXT:  ),
// CHECK-NEXT: ])