32 lines
765 B
Diff
32 lines
765 B
Diff
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
|