Correct typo in comment.
[libfirm] / ir / be / sparc / gen_sparc_machine.c
1 /**
2  * @file
3  * @brief     Generated functions for machine description interface.
4  * @note      DO NOT EDIT THIS FILE, your changes will be lost.
5  *            Edit libfirm/ir/be/sparc/sparc_spec.pl instead.
6  *            created by: libfirm/ir/be/scripts/generate_machine.pl libfirm/ir/be/sparc/sparc_spec.pl libfirm/ir/be/sparc
7  * @date      Tue Dec 15 15:19:15 2009
8  */
9 #include "config.h"
10
11 #include "gen_sparc_machine.h"
12
13
14 be_execution_unit_type_t sparc_execution_unit_types[] = {
15 };
16
17 be_machine_t sparc_cpu = {
18         3,
19         1,
20         0,
21         sparc_execution_unit_types
22 };
23
24 /**
25  * Returns the sparc machines description
26  */
27 const be_machine_t *sparc_init_machine_description(void) {
28         static int initialized = 0;
29
30         if (! initialized) {
31                 be_execution_unit_type_t *cur_unit_tp;
32                 (void) cur_unit_tp; /* avoid warning */
33
34                 be_machine_init_dummy_unit();
35
36                 initialized = 1;
37         }
38
39         return &sparc_cpu;
40 }