mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-06 16:11:40 +00:00
d35a6aff92
Takes us to Go 1.4.2 plus a number of bug fixes. Differential Revision: http://reviews.llvm.org/D8830 llvm-svn: 234136
24 lines
655 B
Go
24 lines
655 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.4.2"
|
|
)
|
|
|
|
// GoVersion returns the version of Go that we are targeting.
|
|
func GoVersion() string {
|
|
return goVersion
|
|
}
|