Jlm
Loading...
Searching...
No Matches
ssa.hpp
Go to the documentation of this file.
1/*
2 * Copyright 2017 Nico Reißmann <nico.reissmann@gmail.com>
3 * See COPYING for terms of redistribution.
4 */
5
6#ifndef JLM_LLVM_IR_SSA_HPP
7#define JLM_LLVM_IR_SSA_HPP
8
9namespace jlm::llvm
10{
11
12class ControlFlowGraph;
13
14void
15destruct_ssa(ControlFlowGraph & cfg);
16
17}
18
19#endif
Global memory state passed between functions.
void destruct_ssa(ControlFlowGraph &cfg)
Definition ssa.cpp:18