Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Fricke (0.23 sec)

  1. src/cmd/asm/internal/lex/input.go

    	for argNum := 0; ; argNum++ {
    		tokens, tok := in.collectArgument(macro)
    		args = append(args, tokens)
    		if tok == ')' {
    			break
    		}
    	}
    	// Zero-argument macros are tricky.
    	if len(macro.args) == 0 && len(args) == 1 && args[0] == nil {
    		args = nil
    	} else if len(args) != len(macro.args) {
    		in.Error("wrong arg count for macro", macro.name)
    	}
    	argMap := make(map[string][]Token)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			p.GccIsClang = true
    		}
    
    		if n := f.Name[key]; n != nil {
    			if *debugDefine {
    				fmt.Fprintf(os.Stderr, "#define %s %s\n", key, val)
    			}
    			n.Define = val
    		}
    	}
    }
    
    // guessKinds tricks gcc into revealing the kind of each
    // name xxx for the references C.xxx in the Go input.
    // The kind is either a constant, type, or variable.
    func (p *Package) guessKinds(f *File) []*Name {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top