Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for auxToCall (0.11 sec)

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

    }
    func auxToSym(i Aux) Sym {
    	// TODO: kind of a hack - allows nil interface through
    	s, _ := i.(Sym)
    	return s
    }
    func auxToType(i Aux) *types.Type {
    	return i.(*types.Type)
    }
    func auxToCall(i Aux) *AuxCall {
    	return i.(*AuxCall)
    }
    func auxToS390xCCMask(i Aux) s390x.CCMask {
    	return i.(s390x.CCMask)
    }
    func auxToS390xRotateParams(i Aux) s390x.RotateParams {
    	return i.(s390x.RotateParams)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top