blob: ea2bcf0e98b8cc09c60b1f4910ce73eb53039cf6 [file] [log] [blame]
// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package ssa
// machine-independent optimization
//go:generate go run rulegen/rulegen.go rulegen/generic.rules genericRules generic.go
func opt(f *Func) {
applyRewrite(f, genericRules)
}