Commit daec1759 by Xinliang David Li Committed by Xinliang David Li

Fix unitialized var

From-SVN: r201735
parent 071e3c4f
2013-08-14 Xinliang David Li <davidxl@google.com>
* config/i386/i386.c (ix86_option_override_internal):
Fix potential unitialized variable error.
2013-08-14 Xinliang David Li <davidxl@google.com>
* config/i386/i386.opt: Define two new options.
* config/i386/x86-tune.def: Add arch selector field in macros.
......
......@@ -2815,7 +2815,7 @@ ix86_parse_stringop_strategy_string (char *strategy_str, bool is_memset)
do
{
int mins, maxs;
int mins = 0, maxs;
stringop_alg alg;
char alg_name[128];
char align[16];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment