summaryrefslogtreecommitdiff
path: root/src/setjmp
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2015-11-10 00:01:55 -0500
committerRich Felker <dalias@aerifal.cx>2015-11-10 00:01:55 -0500
commit4e73d12117e362ad4b82946dc084b4a38f76e54b (patch)
tree1067ede3483aa4001b9df14587775e68d582f9b8 /src/setjmp
parent9f290a49bf9ee247d540d3c83875288a7991699c (diff)
downloadmusl-4e73d12117e362ad4b82946dc084b4a38f76e54b.tar.gz
explicitly assemble all arm asm sources as UAL
these files are all accepted as legacy arm syntax when producing arm code, but legacy syntax cannot be used for producing thumb2 with access to the full ISA. even after switching to UAL, some asm source files contain instructions which are not valid in thumb mode, so these will need to be addressed separately.
Diffstat (limited to 'src/setjmp')
-rw-r--r--src/setjmp/arm/longjmp.s1
-rw-r--r--src/setjmp/arm/setjmp.s1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/setjmp/arm/longjmp.s b/src/setjmp/arm/longjmp.s
index 7db93e8a..e28d8f31 100644
--- a/src/setjmp/arm/longjmp.s
+++ b/src/setjmp/arm/longjmp.s
@@ -1,3 +1,4 @@
+.syntax unified
.global _longjmp
.global longjmp
.type _longjmp,%function
diff --git a/src/setjmp/arm/setjmp.s b/src/setjmp/arm/setjmp.s
index 61425ad5..87791634 100644
--- a/src/setjmp/arm/setjmp.s
+++ b/src/setjmp/arm/setjmp.s
@@ -1,3 +1,4 @@
+.syntax unified
.global __setjmp
.global _setjmp
.global setjmp