diff options
author | 1996-05-01 15:07:40 +0000 | |
---|---|---|
committer | 1996-05-01 15:07:40 +0000 | |
commit | 4beea0705a3416aea0594e616c204c369f8b1c31 (patch) | |
tree | 83c7c1508c606118f98bf04a1a89dd85b7558050 /sys/lib/libkern | |
parent | copyright added by mark at my suggestion (diff) | |
download | wireguard-openbsd-4beea0705a3416aea0594e616c204c369f8b1c31.tar.xz wireguard-openbsd-4beea0705a3416aea0594e616c204c369f8b1c31.zip |
no longer needed because gcc has been fixed
Diffstat (limited to 'sys/lib/libkern')
-rw-r--r-- | sys/lib/libkern/arch/arm32/_mcount.S | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/sys/lib/libkern/arch/arm32/_mcount.S b/sys/lib/libkern/arch/arm32/_mcount.S deleted file mode 100644 index 63cf52e3d62..00000000000 --- a/sys/lib/libkern/arch/arm32/_mcount.S +++ /dev/null @@ -1,17 +0,0 @@ -fp .req r11 -ip .req r12 -sp .req r13 -lr .req r14 -pc .req r15 - -.text - .align 0 - - .global mcount -mcount: - stmfd sp!, {lr} - mov r1, lr - mov r0, ip - bl __mcount - ldmfd sp!, {lr} - add pc, lr, #0x00000004 |