Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: fusl/src/fenv/arm/fenv-hf.s

Issue 1724903002: [fusl] Remove code for unsupported architectures (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fusl/src/fenv/arm/fenv.c ('k') | fusl/src/fenv/i386/fenv.s » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fusl/src/fenv/arm/fenv-hf.s
diff --git a/fusl/src/fenv/arm/fenv-hf.s b/fusl/src/fenv/arm/fenv-hf.s
deleted file mode 100644
index f55d798a606207b4cf9e6da4ee9f074ea331e9f2..0000000000000000000000000000000000000000
--- a/fusl/src/fenv/arm/fenv-hf.s
+++ /dev/null
@@ -1,69 +0,0 @@
-#if __ARM_PCS_VFP
-
-.syntax unified
-.fpu vfp
-
-.global fegetround
-.type fegetround,%function
-fegetround:
- fmrx r0, fpscr
- and r0, r0, #0xc00000
- bx lr
-
-.global __fesetround
-.type __fesetround,%function
-__fesetround:
- fmrx r3, fpscr
- bic r3, r3, #0xc00000
- orr r3, r3, r0
- fmxr fpscr, r3
- mov r0, #0
- bx lr
-
-.global fetestexcept
-.type fetestexcept,%function
-fetestexcept:
- and r0, r0, #0x1f
- fmrx r3, fpscr
- and r0, r0, r3
- bx lr
-
-.global feclearexcept
-.type feclearexcept,%function
-feclearexcept:
- and r0, r0, #0x1f
- fmrx r3, fpscr
- bic r3, r3, r0
- fmxr fpscr, r3
- mov r0, #0
- bx lr
-
-.global feraiseexcept
-.type feraiseexcept,%function
-feraiseexcept:
- and r0, r0, #0x1f
- fmrx r3, fpscr
- orr r3, r3, r0
- fmxr fpscr, r3
- mov r0, #0
- bx lr
-
-.global fegetenv
-.type fegetenv,%function
-fegetenv:
- fmrx r3, fpscr
- str r3, [r0]
- mov r0, #0
- bx lr
-
-.global fesetenv
-.type fesetenv,%function
-fesetenv:
- cmn r0, #1
- moveq r3, #0
- ldrne r3, [r0]
- fmxr fpscr, r3
- mov r0, #0
- bx lr
-
-#endif
« no previous file with comments | « fusl/src/fenv/arm/fenv.c ('k') | fusl/src/fenv/i386/fenv.s » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698