github.com/axw/llgo@v0.0.0-20160805011314-95b5fe4dca20/irgen/version.go (about)

     1  //===- version.go - version info ------------------------------------------===//
     2  //
     3  //                     The LLVM Compiler Infrastructure
     4  //
     5  // This file is distributed under the University of Illinois Open Source
     6  // License. See LICENSE.TXT for details.
     7  //
     8  //===----------------------------------------------------------------------===//
     9  //
    10  // This file specifies the Go version supported by the IR generator.
    11  //
    12  //===----------------------------------------------------------------------===//
    13  
    14  package irgen
    15  
    16  const (
    17  	goVersion = "go1.4.2"
    18  )
    19  
    20  // GoVersion returns the version of Go that we are targeting.
    21  func GoVersion() string {
    22  	return goVersion
    23  }