83
|
1 //===- version.go - LLVM 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 defines LLVM version information.
|
|
11 //
|
|
12 //===----------------------------------------------------------------------===//
|
|
13
|
|
14 package llvm
|
|
15
|
|
16 /*
|
|
17 #include "llvm/Config/llvm-config.h"
|
|
18 */
|
|
19 import "C"
|
|
20
|
|
21 const Version = C.LLVM_VERSION_STRING
|