]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/dist: fix whitespace and comment typo in arm vfp detection
authorJosh Bleecher Snyder <josharian@gmail.com>
Tue, 3 Feb 2015 22:09:53 +0000 (14:09 -0800)
committerJosh Bleecher Snyder <josharian@gmail.com>
Wed, 4 Feb 2015 00:04:09 +0000 (00:04 +0000)
Follow-up to cl 2682.

Change-Id: I06a589e782af821e4fa46a7c34d9a549de47fa60
Reviewed-on: https://go-review.googlesource.com/3830
Reviewed-by: Dave Cheney <dave@cheney.net>
src/cmd/dist/vfp_arm.s

index 2dbc59a5fb4d2e6691106c6953299b9210a868cf..39052dbb30c5f4511515198d10d803237c00c135 100644 (file)
@@ -6,10 +6,10 @@
 
 // try to run "vmov.f64 d0, d0" instruction
 TEXT ·useVFPv1(SB),NOSPLIT,$0
-       WORD $0xeeb00b40        // vomv.f64 d0, d0
+       WORD $0xeeb00b40        // vmov.f64 d0, d0
        RET
 
 // try to run VFPv3-only "vmov.f64 d0, #112" instruction
 TEXT ·useVFPv3(SB),NOSPLIT,$0
-        WORD $0xeeb70b00       // vmov.f64 d0, #112
+       WORD $0xeeb70b00        // vmov.f64 d0, #112
        RET