//===- ReduceInvokes.cpp - Specialized Delta Pass -------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // Try to replace invokes with calls. // //===----------------------------------------------------------------------===// #include "ReduceInvokes.h" #include "Delta.h" #include "llvm/IR/Instructions.h" #include "llvm/Transforms/Utils/Local.h" usingnamespacellvm; static void reduceInvokesInFunction(Oracle &O, Function &F) { … } static void reduceInvokesInModule(Oracle &O, ReducerWorkItem &WorkItem) { … } void llvm::reduceInvokesDeltaPass(TestRunner &Test) { … }