Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testBitwiseAnd_ssa (0.51 sec)

  1. src/cmd/compile/internal/test/testdata/arith_test.go

    func testRegallocCVSpill_ssa(a, b, c, d int8) int8 {
    	return a + -32 + b + 63*c*-87*d
    }
    
    func testBitwiseLogic(t *testing.T) {
    	a, b := uint32(57623283), uint32(1314713839)
    	if want, got := uint32(38551779), testBitwiseAnd_ssa(a, b); want != got {
    		t.Errorf("testBitwiseAnd failed, wanted %d got %d", want, got)
    	}
    	if want, got := uint32(1333785343), testBitwiseOr_ssa(a, b); want != got {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
Back to top