Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for y_const (0.36 sec)

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

    		return true
    	}
    	// match: (ORconst [c] (MOVDconst [d]))
    	// result: (MOVDconst [c|d])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpARM64MOVDconst {
    			break
    		}
    		d := auxIntToInt64(v_0.AuxInt)
    		v.reset(OpARM64MOVDconst)
    		v.AuxInt = int64ToAuxInt(c | d)
    		return true
    	}
    	// match: (ORconst [c] (ORconst [d] x))
    	// result: (ORconst [c|d] x)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.19.md

    - github.com/golangci/go-misc: [927a3d8](https://github.com/golangci/go-misc/tree/927a3d8)
    - github.com/golangci/go-tools: [e32c541](https://github.com/golangci/go-tools/tree/e32c541)
    - github.com/golangci/goconst: [041c5f2](https://github.com/golangci/goconst/tree/041c5f2)
    - github.com/golangci/gocyclo: [2becd97](https://github.com/golangci/gocyclo/tree/2becd97)
    - github.com/golangci/gofmt: [0b8337e](https://github.com/golangci/gofmt/tree/0b8337e)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
Back to top