blob: 689cb690a8029d015ec29e1d5f7a165aea667809 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
.text
.globl _start
.type ifunc, @gnu_indirect_function
_start:
lea .Ljmp@GOTOFF(%ebx), %eax
ifunc:
jmp *(%eax)
.section .data.rel.ro.local,"aw",@progbits
.align 4
.Ljmp:
.long ifunc
.long _start
|