Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for RewriteCall (0.56 sec)

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

    	}
    
    	// Rewrite calls
    	for _, v := range calls {
    		switch v.Op {
    		case OpStaticLECall:
    			rewriteCall(v, OpStaticCall, 0)
    		case OpTailLECall:
    			rewriteCall(v, OpTailCall, 0)
    		case OpClosureLECall:
    			rewriteCall(v, OpClosureCall, 2)
    		case OpInterLECall:
    			rewriteCall(v, OpInterCall, 1)
    		}
    	}
    
    	// Rewrite results from exit blocks
    	for _, b := range exitBlocks {
    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