llir-opt  0.0.1
Low-Level Post-Link Optimiser for OCaml and C
inline_util.h
1 // This file if part of the llir-opt project.
2 // Licensing information can be found in the LICENSE file.
3 // (C) 2018 Nandor Licker. All rights reserved.
4 
5 #pragma once
6 
7 
8 class Func;
9 
10 
14 bool CanInline(const Func *caller, const Func *callee);
Func
Definition: func.h:30