forked from OSchip/llvm-project
24 lines
653 B
Go
24 lines
653 B
Go
|
//===- version.go - version info ------------------------------------------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// This file specifies the Go version supported by the IR generator.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
package irgen
|
||
|
|
||
|
const (
|
||
|
goVersion = "go1.3"
|
||
|
)
|
||
|
|
||
|
// GoVersion returns the version of Go that we are targeting.
|
||
|
func GoVersion() string {
|
||
|
return goVersion
|
||
|
}
|