optimisation => optimization
authorMatthias Braun <matze@braunis.de>
Fri, 10 Jun 2011 13:28:41 +0000 (15:28 +0200)
committerMatthias Braun <matze@braunis.de>
Fri, 10 Jun 2011 13:29:22 +0000 (15:29 +0200)
AUTHOR
driver/firm_opt.c

diff --git a/AUTHOR b/AUTHOR
index 081b9a3..6860f0a 100644 (file)
--- a/AUTHOR
+++ b/AUTHOR
@@ -6,4 +6,4 @@ and general support by:
 Christoph Mallon   (he understands the standard :), bugfixes,
                     diagnostic infrastructure and printf format checker,
                     warnings)
-Michael Beck       (bugfixes, firm optimisation driver, warnings, comments)
+Michael Beck       (bugfixes, firm optimization driver, warnings, comments)
index 966139e..053960d 100644 (file)
@@ -373,7 +373,7 @@ static opt_config_t opts[] = {
 #define IRP(a, b, c, d) { OPT_TARGET_IRP, a, .u.transform_irp = b,                     c, d }
        IRG("bool",              opt_bool,                 "bool simplification",                                   OPT_FLAG_NONE),
        IRG("combo",             combo,                    "combined CCE, UCE and GVN",                             OPT_FLAG_NONE),
-       IRG("confirm",           construct_confirms,       "confirm optimisation",                                  OPT_FLAG_HIDE_OPTIONS),
+       IRG("confirm",           construct_confirms,       "confirm optimization",                                  OPT_FLAG_HIDE_OPTIONS),
        IRG("control-flow",      optimize_cf,              "optimization of control-flow",                          OPT_FLAG_HIDE_OPTIONS),
        IRG("dead",              dead_node_elimination,    "dead node elimination",                                 OPT_FLAG_HIDE_OPTIONS | OPT_FLAG_NO_DUMP | OPT_FLAG_NO_VERIFY),
        IRG("deconv",            conv_opt,                 "conv node elimination",                                 OPT_FLAG_NONE),
@@ -440,7 +440,7 @@ static bool get_opt_enabled(const char *name)
 }
 
 /**
- * perform an optimisation on a single graph
+ * perform an optimization on a single graph
  *
  * @return  true if something changed, false otherwise
  */
@@ -966,7 +966,7 @@ int firm_option(const char *const opt)
                }
        }
 
-       /* maybe this enables/disables optimisations */
+       /* maybe this enables/disables optimizations */
        if (firm_opt_option(opt))
                return 1;
 
@@ -989,7 +989,7 @@ static void set_option(const char *arg)
 
 void choose_optimization_pack(int level)
 {
-       /* apply optimisation level */
+       /* apply optimization level */
        switch(level) {
        case 0:
                set_option("no-opt");