bearch: Disallow passing Projs to get_irn_ops().
[libfirm] / ir / ir / instrument.h
1 /*
2  * This file is part of libFirm.
3  * Copyright (C) 2012 University of Karlsruhe.
4  */
5
6 /**
7  * @file
8  * @brief   Instrumentation of graphs.
9  */
10 #ifndef FIRM_IR_INSTRUMENT_H
11 #define FIRM_IR_INSTRUMENT_H
12
13 /**
14  * Adds a Call at the beginning of the given irg.
15  *
16  * @param irg  the graph to instrument
17  * @param ent  the entity to call
18  */
19 void instrument_initcall(ir_graph *irg, ir_entity *ent);
20
21 #endif