* cgraph.c (cgraph_create_edge_1): Clear speculative flag.

From-SVN: r201646
This commit is contained in:
Jan Hubicka 2013-08-10 11:59:56 +02:00 committed by Jan Hubicka
parent ad83025ea6
commit 5979aa5497
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2013-08-09 Jan Hubicka <jh@suse.cz>
* cgraph.c (cgraph_create_edge_1): Clear speculative flag.
2013-08-09 Xinliang David Li <davidxl@google.com>
* config/i386/stringop.def: New file.

View file

@ -873,6 +873,7 @@ cgraph_create_edge_1 (struct cgraph_node *caller, struct cgraph_node *callee,
edge->indirect_info = NULL;
edge->indirect_inlining_edge = 0;
edge->speculative = false;
return edge;
}