brintos

brintos / llvm-project-archived public Read only

0
0
Text · 715 B · f6dcb9b Raw
20 lines · c
1//===- ReduceValuesToReturn.h - Specialized Delta Pass ----------*- C++ -*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_TOOLS_LLVM_REDUCE_DELTAS_REDUCEVALUESTORETURN_H10#define LLVM_TOOLS_LLVM_REDUCE_DELTAS_REDUCEVALUESTORETURN_H11 12#include "Delta.h"13 14namespace llvm {15void reduceArgumentsToReturnDeltaPass(Oracle &O, ReducerWorkItem &WorkItem);16void reduceInstructionsToReturnDeltaPass(Oracle &O, ReducerWorkItem &WorkItem);17} // namespace llvm18 19#endif20