Search Options

Results per page
Sort
Preferred Languages
Advance

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