22 lines · c
1//===------------------------------------------------------------*- 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_REDUCEOPERANDS_H10#define LLVM_TOOLS_LLVM_REDUCE_DELTAS_REDUCEOPERANDS_H11 12#include "Delta.h"13 14namespace llvm {15void reduceOperandsOneDeltaPass(Oracle &, ReducerWorkItem &);16void reduceOperandsZeroDeltaPass(Oracle &, ReducerWorkItem &);17void reduceOperandsNaNDeltaPass(Oracle &, ReducerWorkItem &);18void reduceOperandsPoisonDeltaPass(Oracle &, ReducerWorkItem &);19} // namespace llvm20 21#endif22