This is an automated email from the git hooks/post-receive script.
unknown user pushed a commit to branch hjl/tune/cost-sched in repository gcc.
commit 74060e1dc6233d6fea5cc49a54468a7c675170d8 Author: H.J. Lu hjl.tools@gmail.com Date: Thu Jul 9 10:53:05 2015 -0700
Add support for -mcost=iamcu --- gcc/config/i386/i386-tune.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/gcc/config/i386/i386-tune.c b/gcc/config/i386/i386-tune.c index 9cf702c..d4261a0 100644 --- a/gcc/config/i386/i386-tune.c +++ b/gcc/config/i386/i386-tune.c @@ -93,6 +93,8 @@ x86_tune_options (void) ix86_cost = &atom_cost; else if (strcmp (x86_cost_string, "slm") == 0) ix86_cost = &slm_cost; + else if (strcmp (x86_cost_string, "iamcu") == 0) + ix86_cost = &iamcu_cost; else if (strcmp (x86_cost_string, "generic") == 0) ix86_cost = &generic_cost; else if (strcmp (x86_cost_string, "core") == 0)