diff options
Diffstat (limited to 'lib/Expr/AssignmentGenerator.cpp')
-rw-r--r-- | lib/Expr/AssignmentGenerator.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/Expr/AssignmentGenerator.cpp b/lib/Expr/AssignmentGenerator.cpp index 755263f0..4a1d68d8 100644 --- a/lib/Expr/AssignmentGenerator.cpp +++ b/lib/Expr/AssignmentGenerator.cpp @@ -1,3 +1,12 @@ +//===-- AssignmentGenerator.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/AssignmentGenerator.h" #include "llvm/Support/raw_ostream.h" @@ -32,7 +41,8 @@ bool AssignmentGenerator::helperGenerateAssignment(const ref<Expr> &e, } else { return false; } - if (!ExtractExpr::create(kid_val, kid_val.get()->getWidth() - 1, 1).get()->isZero()) { + if (!ExtractExpr::create(kid_val, kid_val.get()->getWidth() - 1, + 1).get()->isZero()) { // FIXME: really bad hack to support those cases in which KLEE creates // Add expressions with negative values val = createAddExpr(kid_val, val); |