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
14package llvm
15
16/*
17#include "llvm/Config/llvm-config.h"
18*/
19import "C"
20
21const Version = C.LLVM_VERSION_STRING
22