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

#include "ModuleHelper.h"

using namespace klee;

void klee::checkModule(bool DontVerfify, llvm::Module *module) { assert(0); }

void klee::instrument(bool CheckDivZero, bool CheckOvershift,
                      llvm::Module *module) {
  assert(0);
}