blob: 28d1cd989e3d2385de7caf66493d41a54b5c705a [file] [log] [blame]
Diego Trevino Ferrerddc64eb2019-08-08 22:16:33 +00001//===- DeltaManager.h - Runs Delta Passes to reduce Input -----------------===//
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-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file calls each specialized Delta pass in order to reduce the input IR
10// file.
11//
12//===----------------------------------------------------------------------===//
13
14#include "TestRunner.h"
15#include "deltas/Delta.h"
16#include "deltas/ReduceFunctions.h"
17
18namespace llvm {
19
20inline void runDeltaPasses(TestRunner &Tester) {
21 reduceFunctionsDeltaPass(Tester);
Diego Trevino Ferrerddc64eb2019-08-08 22:16:33 +000022 // TODO: Implement the remaining Delta Passes
23}
24
25} // namespace llvm