Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ConstInt32 (0.08 sec)

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

    				}
    			default:
    				continue
    			}
    			var c *Value
    			f := b.Func
    			switch bits {
    			case 64:
    				c = f.ConstInt64(typ, constValue)
    			case 32:
    				c = f.ConstInt32(typ, int32(constValue))
    			case 16:
    				c = f.ConstInt16(typ, int16(constValue))
    			case 8:
    				c = f.ConstInt8(typ, int8(constValue))
    			default:
    				panic("unexpected integer size")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top