projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad83025
)
* cgraph.c (cgraph_create_edge_1): Clear speculative flag.
author
Jan Hubicka
<jh@suse.cz>
Sat, 10 Aug 2013 09:59:56 +0000
(11:59 +0200)
committer
Jan Hubicka
<hubicka@gcc.gnu.org>
Sat, 10 Aug 2013 09:59:56 +0000
(09:59 +0000)
From-SVN: r201646
gcc/ChangeLog
patch
|
blob
|
history
gcc/cgraph.c
patch
|
blob
|
history
diff --git
a/gcc/ChangeLog
b/gcc/ChangeLog
index 5e0f269d68b1188f2e8ab85cf16e969139c9fec3..3caf0493493d26d3d73a5ee1c76dc41a7e6ff53f 100644
(file)
--- a/
gcc/ChangeLog
+++ b/
gcc/ChangeLog
@@
-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.
diff --git
a/gcc/cgraph.c
b/gcc/cgraph.c
index b3b9e25862876bdbe83ecdc396da6c5626e571ec..50d13ab4f848a1a851622c47f27ec2de5d993dab 100644
(file)
--- a/
gcc/cgraph.c
+++ b/
gcc/cgraph.c
@@
-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;
}