about summary refs log tree commit diff homepage
path: root/include/klee/Config/Version.h
blob: f3ef8fa5c62ba094169a81bc53b00cb2dd2bbab2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//===-- Version.h -----------------------------------------------*- C++ -*-===//
//
//                     The KLEE Symbolic Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef KLEE_VERSION_H
#define KLEE_VERSION_H

#include "klee/Config/config.h"

#define LLVM_VERSION(major, minor) (((major) << 8) | (minor))
#define LLVM_VERSION_CODE LLVM_VERSION(LLVM_VERSION_MAJOR, LLVM_VERSION_MINOR)
#define KLEE_LLVM_CL_VAL_END
#define KLEE_LLVM_GOIF_TERMINATOR

#endif /* KLEE_VERSION_H */