blob: c59eb6f646561cc519fbb0134424de8dca97f9c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//===- 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.4.2"
)
// GoVersion returns the version of Go that we are targeting.
func GoVersion() string {
return goVersion
}
|