blob: 799620c6d12a35f97850567a6d4487df4fa6317a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//===-- KInstruction.cpp --------------------------------------------------===//
//
// The KLEE Symbolic Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "klee/Internal/Module/KInstruction.h"
using namespace llvm;
using namespace klee;
/***/
KInstruction::~KInstruction() {
delete[] operands;
}
|