asm/f64 Comment assembly code

This commit is contained in:
Chad Kunde
2016-06-16 10:25:42 -07:00
parent 2f9b0ec3b3
commit 2d0053676b
11 changed files with 360 additions and 331 deletions

View File

@@ -447,6 +447,11 @@ func TestDiv(t *testing.T) {
src: []float64{1, 2, 3, 4},
expect: []float64{1, 1, 1, 1},
},
{
dst: []float64{1, 2, 3, 4, 2, 4, 6, 8},
src: []float64{1, 2, 3, 4, 1, 2, 3, 4},
expect: []float64{1, 1, 1, 1, 2, 2, 2, 2},
},
{
dst: []float64{2, 4, 6},
src: []float64{1, 2, 3},