summaryrefslogtreecommitdiff
path: root/src/math/floor_arm.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/floor_arm.s')
-rw-r--r--src/math/floor_arm.s14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/math/floor_arm.s b/src/math/floor_arm.s
new file mode 100644
index 000000000..59091765b
--- /dev/null
+++ b/src/math/floor_arm.s
@@ -0,0 +1,14 @@
+// Copyright 2011 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+#include "textflag.h"
+
+TEXT ·Floor(SB),NOSPLIT,$0
+ B ·floor(SB)
+
+TEXT ·Ceil(SB),NOSPLIT,$0
+ B ·ceil(SB)
+
+TEXT ·Trunc(SB),NOSPLIT,$0
+ B ·trunc(SB)