Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestArmFloatBigOffsetWrite (0.16 sec)

  1. src/runtime/vlop_arm_test.go

    	//   add     fp, fp, r0
    	//   vstr    d0, [fp]
    	// The software floating-point emulator gives up on the add.
    	// This causes the store to not work.
    	// See issue 15440.
    	a[128] = 128.0
    }
    func TestArmFloatBigOffsetWrite(t *testing.T) {
    	var a [129]float64
    	for i := 0; i < 128; i++ {
    		a[i] = float64(i)
    	}
    	armFloatWrite(&a)
    	for i, x := range a {
    		if x != float64(i) {
    			t.Errorf("bad entry %d:%f\n", i, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 01 21:52:00 UTC 2018
    - 3.7K bytes
    - Viewed (0)
Back to top