summaryrefslogtreecommitdiff
path: root/test/lib
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2006-02-09 14:55:48 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2006-02-09 14:55:48 +0000
commit2ae43be7b9d4118335c9d2cef6e098f9b9f807fe (patch)
treebbb5e49ccbf7e3614966571acc317f8d318fecad /test/lib
Initial import of compcert
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/staticlib.S26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/lib/staticlib.S b/test/lib/staticlib.S
new file mode 100644
index 0000000..b093e7c
--- /dev/null
+++ b/test/lib/staticlib.S
@@ -0,0 +1,26 @@
+/* Work around MacOX shared-library lossage.
+ (No static version of the C library.) */
+
+.macro GLUE
+ .text
+ .globl _$0_static
+_$0_static:
+ addis r11, 0, ha16(L$0)
+ lwz r11, lo16(L$0)(r11)
+ mtctr r11
+ bctr
+ .non_lazy_symbol_pointer
+L$0:
+ .indirect_symbol _$0
+ .long 0
+.endmacro
+
+ GLUE cos
+ GLUE sin
+ GLUE atan2
+ GLUE asin
+ GLUE sqrt
+ GLUE fmod
+ GLUE memcpy
+ GLUE memset
+ \ No newline at end of file