Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SecondOp (0.1 sec)

  1. src/cmd/compile/internal/ssa/expand_calls.go

    	}
    
    	// For 32-bit, need to deal with decomposition of 64-bit integers, which depends on endianness.
    	if f.Config.BigEndian {
    		x.firstOp = OpInt64Hi
    		x.secondOp = OpInt64Lo
    		x.firstType = x.typs.Int32
    		x.secondType = x.typs.UInt32
    	} else {
    		x.firstOp = OpInt64Lo
    		x.secondOp = OpInt64Hi
    		x.firstType = x.typs.UInt32
    		x.secondType = x.typs.Int32
    	}
    
    	// Defer select processing until after all calls and selects are seen.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
Back to top