Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for inferSuffixError (0.42 sec)

  1. src/cmd/internal/obj/x86/evex.go

    func ParseSuffix(p *obj.Prog, cond string) error {
    	cond = strings.TrimPrefix(cond, ".")
    
    	suffix := newOpSuffix(cond)
    	if !suffix.IsValid() {
    		return inferSuffixError(cond)
    	}
    
    	p.Scond = uint8(suffix)
    	return nil
    }
    
    // inferSuffixError returns non-nil error that describes what could be
    // the cause of suffix parse failure.
    //
    // At the point this function is executed there is already assembly error,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
Back to top