Skip to content

Commit 8112bc1

Browse files
committed
clang-format
1 parent 6cab44b commit 8112bc1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/Core/Executor.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -454,9 +454,9 @@ Executor::Executor(LLVMContext &ctx, const InterpreterOptions &opts,
454454
InterpreterHandler *ih)
455455
: Interpreter(opts), interpreterHandler(ih), searcher(nullptr),
456456
externalDispatcher(new ExternalDispatcher(ctx)), statsTracker(0),
457-
pathWriter(0), symPathWriter(0), specialFunctionHandler(0),
458-
timers{time::Span(TimerInterval)}, guidanceKind(opts.Guidance),
459-
codeGraphDistance(new CodeGraphDistance()),
457+
pathWriter(0), symPathWriter(0),
458+
specialFunctionHandler(0), timers{time::Span(TimerInterval)},
459+
guidanceKind(opts.Guidance), codeGraphDistance(new CodeGraphDistance()),
460460
distanceCalculator(new DistanceCalculator(*codeGraphDistance)),
461461
targetCalculator(new TargetCalculator(*codeGraphDistance)),
462462
targetManager(new TargetManager(guidanceKind, *distanceCalculator,

tools/klee/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ createLibCWrapper(std::vector<std::unique_ptr<llvm::Module>> &userModules,
12271227
args.push_back(llvm::ConstantExpr::getBitCast(
12281228
cast<llvm::Constant>(inModuleReference.getCallee()),
12291229
ft->getParamType(0)));
1230-
args.push_back(&*(stub->arg_begin())); // argc
1230+
args.push_back(&*(stub->arg_begin())); // argc
12311231
auto arg_it = stub->arg_begin();
12321232
args.push_back(&*(++arg_it)); // argv
12331233
args.push_back(Constant::getNullValue(ft->getParamType(3))); // app_init

0 commit comments

Comments
 (0)