Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for variableShiftOverflow64x16 (0.26 sec)

  1. src/cmd/compile/internal/test/shift_test.go

    	// Verify junk bits are ignored when doing a variable shift.
    	return x >> (y + z), x << (y + z), int8(uint8(x) >> (y + z))
    }
    
    //go:noinline
    func variableShiftOverflow64x16(x int64, y, z uint16) (a, b, c int64) {
    	// Verify junk bits are ignored when doing a variable shift.
    	return x >> (y + z), x << (y + z), int64(uint64(x) >> (y + z))
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top