1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| From 078df5b25d75578bb0448ca53514c23debe6d920 Mon Sep 17 00:00:00 2001
| From: Khem Raj <raj.khem@gmail.com>
| Date: Tue, 29 Jan 2019 12:03:11 -0800
| Subject: [PATCH] burn.S: Remove .func/.endfunc
|
| These are useless on Linux systems where we use dwarf debug info instead
| of stabs
|
| Upstream-Status: Pending
| Signed-off-by: Khem Raj <raj.khem@gmail.com>
| ---
| burn.S | 2 --
| 1 file changed, 2 deletions(-)
|
| diff --git a/burn.S b/burn.S
| index c372c87..4458f51 100644
| --- a/burn.S
| +++ b/burn.S
| @@ -5,7 +5,6 @@
|
| .global main
| .type main, STT_FUNC
| - .func main
| main:
| bic sp, sp, #15
| 1:
| @@ -23,4 +22,3 @@ main:
| ssub8 lr, r4, r5
| vmul.u16 q13, q0, q4
| b 1b
| -.endfunc
|
|