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

Side by Side Diff: fusl/src/fenv/mips/fenv.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/mips/fenv.S ('k') | fusl/src/setjmp/mips/longjmp.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 #ifndef __mips_soft_float 1 #ifndef __mips_soft_float
2 2
3 .set noreorder 3 .set noreorder
4 4
5 .global feclearexcept 5 .global feclearexcept
6 .type feclearexcept,@function 6 .type feclearexcept,@function
7 feclearexcept: 7 feclearexcept:
8 and $4, $4, 0x7c 8 and $4, $4, 0x7c
9 cfc1 $5, $31 9 cfc1 $5, $31
10 or $5, $5, $4 10 or $5, $5, $4
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 fesetenv: 62 fesetenv:
63 addiu $5, $4, 1 63 addiu $5, $4, 1
64 beq $5, $0, 1f 64 beq $5, $0, 1f
65 nop 65 nop
66 lw $5, 0($4) 66 lw $5, 0($4)
67 1: ctc1 $5, $31 67 1: ctc1 $5, $31
68 jr $ra 68 jr $ra
69 li $2, 0 69 li $2, 0
70 70
71 #endif 71 #endif
OLDNEW
« no previous file with comments | « fusl/src/fenv/mips/fenv.S ('k') | fusl/src/setjmp/mips/longjmp.S » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698