becopyheur4: Clean up co_mst_irn_init().
[libfirm] / ir / opt / local.c
1 /*
2  * This file is part of libFirm.
3  * Copyright (C) 2012 Karlsruhe Institute of Technology.
4  */
5
6 /**
7  * @brief   Apply local opts until fixpoint
8  * @author  Andreas Zwinkau
9  */
10 #include <config.h>
11 #include "irgopt.h"
12
13 void local_opts(ir_graph *irg)
14 {
15         optimize_graph_df(irg);
16 }