Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for variableShiftOverflow8x8 (0.27 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), int16(uint16(x) >> (y + z))
    }
    
    //go:noinline
    func variableShiftOverflow8x8(x int8, y, z uint8) (a, b, c int8) {
    	// Verify junk bits are ignored when doing a variable shift.
    	return x >> (y + z), x << (y + z), int8(uint8(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