llvm/llvm/tools/llvm-reduce/deltas/ReduceInstructionFlags.cpp

//===- ReduceInstructionFlags.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 remove optimization flags on instructions
//
//===----------------------------------------------------------------------===//

#include "ReduceInstructionFlags.h"
#include "Delta.h"
#include "llvm/IR/InstIterator.h"
#include "llvm/IR/Instruction.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/Operator.h"

usingnamespacellvm;

static void reduceFlagsInModule(Oracle &O, ReducerWorkItem &WorkItem) {}

void llvm::reduceInstructionFlagsDeltaPass(TestRunner &Test) {}