mini-llvm 0.1.0
Loading...
Searching...
No Matches
Terminator.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
2
3#pragma once
4
5#include <unordered_set>
6
10
11namespace mini_llvm::ir {
12
14public:
15 virtual std::unordered_set<BasicBlock *> successors() const = 0;
16};
17
18} // namespace mini_llvm::ir
#define MINI_LLVM_EXPORT
Definition Compiler.h:17
Definition Instruction.h:22
Definition Terminator.h:13
virtual std::unordered_set< BasicBlock * > successors() const =0
Definition Argument.h:13