From: Christoph Mallon Date: Fri, 8 Apr 2011 10:50:05 +0000 (+0200) Subject: Inline function, which consists of a single call, into its only caller. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=2744c9c79897db7d3dbeda3de6d936bde5b3c44b;p=cparser Inline function, which consists of a single call, into its only caller. --- diff --git a/main.c b/main.c index c27df69..e58530e 100644 --- a/main.c +++ b/main.c @@ -161,11 +161,6 @@ struct file_list_entry_t { static file_list_entry_t *temp_files; -static void initialize_firm(void) -{ - firm_early_init(); -} - static void get_output_name(char *buf, size_t buflen, const char *inputname, const char *newext) { @@ -652,7 +647,7 @@ static bool parse_target_triple(const char *arg) int main(int argc, char **argv) { - initialize_firm(); + firm_early_init(); const char *dumpfunction = NULL; const char *print_file_name_file = NULL;