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

Side by Side Diff: fusl/src/fenv/arm/fenv-hf.s

Issue 1712063002: [fusl] Consistently name asm files .s, not .S (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 unified diff | Download patch
« no previous file with comments | « fusl/src/fenv/arm/fenv-hf.S ('k') | fusl/src/fenv/mips/fenv.S » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #if __ARM_PCS_VFP 1 #if __ARM_PCS_VFP
2 2
3 .syntax unified 3 .syntax unified
4 .fpu vfp 4 .fpu vfp
5 5
6 .global fegetround 6 .global fegetround
7 .type fegetround,%function 7 .type fegetround,%function
8 fegetround: 8 fegetround:
9 fmrx r0, fpscr 9 fmrx r0, fpscr
10 and r0, r0, #0xc00000 10 and r0, r0, #0xc00000
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 .type fesetenv,%function 60 .type fesetenv,%function
61 fesetenv: 61 fesetenv:
62 cmn r0, #1 62 cmn r0, #1
63 moveq r3, #0 63 moveq r3, #0
64 ldrne r3, [r0] 64 ldrne r3, [r0]
65 fmxr fpscr, r3 65 fmxr fpscr, r3
66 mov r0, #0 66 mov r0, #0
67 bx lr 67 bx lr
68 68
69 #endif 69 #endif
OLDNEW
« no previous file with comments | « fusl/src/fenv/arm/fenv-hf.S ('k') | fusl/src/fenv/mips/fenv.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698