From d56184fc383a2e09ed36dd7d053e001b4c6059ca Mon Sep 17 00:00:00 2001 From: Cristian Cadar Date: Thu, 4 Oct 2018 10:53:19 +0100 Subject: Added missing headers and clang-format the files --- lib/Expr/AssignmentGenerator.cpp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'lib/Expr/AssignmentGenerator.cpp') 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 &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); -- cgit 1.4.1