P4C
The P4 Compiler
Loading...
Searching...
No Matches
midEndLast.h
1/*
2 * SPDX-FileCopyrightText: 2013 Barefoot Networks, Inc.
3 * Copyright 2013-present Barefoot Networks, Inc.
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
8#ifndef MIDEND_MIDENDLAST_H_
9#define MIDEND_MIDENDLAST_H_
10
11#include "ir/ir.h"
12
13namespace P4 {
14
15class MidEndLast : public Inspector {
16 public:
17 MidEndLast() { setName("MidEndLast"); }
18 bool preorder(const IR::P4Program *) override { return false; }
19};
20
21} // namespace P4
22
23#endif /* MIDEND_MIDENDLAST_H_ */
Definition visitor.h:418
TODO: this is not really specific to BMV2, it should reside somewhere else.
Definition applyOptionsPragmas.cpp:13