From: Michael Beck Date: Tue, 16 Jan 2007 15:43:42 +0000 (+0000) Subject: typo fixed X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=b995ec8c1e340f29f5db7c93e7ef4c77cd9adcee;p=libfirm typo fixed [r8532] --- diff --git a/ir/ana/callgraph.h b/ir/ana/callgraph.h index 514d74910..010206e9e 100644 --- a/ir/ana/callgraph.h +++ b/ir/ana/callgraph.h @@ -73,15 +73,18 @@ int get_irg_recursion_depth(ir_graph *irg); double get_irg_method_execution_frequency (ir_graph *irg); -/** Construct the callgraph. Expects callee information, i.e., - irg_callee_info_consistent must be set. This can be computed with - cgana(). */ +/** + * Construct the callgraph. Expects callee information, i.e., + * irg_callee_info_consistent must be set. This can be computed with + * cgana(). + */ void compute_callgraph(void); + /** Destruct the callgraph. */ void free_callgraph(void); -/** A function type for fuctions passed to the callgraph walker. */ +/** A function type for functions passed to the callgraph walker. */ typedef void callgraph_walk_func(ir_graph *g, void *env); void callgraph_walk(callgraph_walk_func *pre, callgraph_walk_func *post, void *env);