Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for opIsCommutative (0.25 sec)

  1. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	x = strings.Replace(x, "[ ", "[", -1)
    	x = strings.Replace(x, " ]", "]", -1)
    	x = strings.Replace(x, ")=>", ") =>", -1)
    	return x
    }
    
    // opIsCommutative reports whether op s is commutative.
    func opIsCommutative(op string, arch arch) bool {
    	for _, x := range genericOps {
    		if op == x.name {
    			if x.commutative {
    				return true
    			}
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top