commit | cd36f5255874a8ca6b8f660d010986d21c5a364b | [log] [tgz] |
---|---|---|
author | Peter Collingbourne <pcc@google.com> | Wed Jun 11 16:16:19 2014 -0400 |
committer | Alan Donovan <adonovan@google.com> | Wed Jun 11 16:16:19 2014 -0400 |
tree | 7b816e14fe41c7ee97ecf167a753734a060421b4 | |
parent | cc02c5be3657f1c949e316dcfbb5d418dbba15a9 [diff] [blame] |
go.tools/go/ssa: add Max to Slice's SSA operand list LGTM=adonovan R=adonovan, bradfitz CC=golang-codereviews https://golang.org/cl/101160043
diff --git a/go/ssa/ssa.go b/go/ssa/ssa.go index e68650e..d4d5333 100644 --- a/go/ssa/ssa.go +++ b/go/ssa/ssa.go
@@ -1655,7 +1655,7 @@ } func (v *Slice) Operands(rands []*Value) []*Value { - return append(rands, &v.X, &v.Low, &v.High) + return append(rands, &v.X, &v.Low, &v.High, &v.Max) } func (s *Store) Operands(rands []*Value) []*Value {