summaryrefslogtreecommitdiff
path: root/src/ldso/ppc/dlsym.S
blob: e36de10bc8bb78f64b868403ffa479c95d0c8a35 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <bits/asm.h>
        .text
        .global dlsym
        .type   dlsym,@function
dlsym:
        mflr    r5                      // The return address is arg3.
        b       __dlsym
        .end    dlsym
        .size   dlsym, .-dlsym