aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2018-02-17 00:05:00 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2018-02-17 00:05:00 +0100
commit1a03b929769c367aaca98164407700fefad09993 (patch)
tree3f7fc86d3b215445cf40fb7e88f6d52596e56df0
parent83d9be558117c0dea6b12d3db4171eae1c90a2d7 (diff)
downloadgcc-1a03b929769c367aaca98164407700fefad09993.zip
gcc-1a03b929769c367aaca98164407700fefad09993.tar.gz
gcc-1a03b929769c367aaca98164407700fefad09993.tar.bz2
re PR ipa/84425 (Hang in ipa-inline.c starting with r250048)
PR ipa/84425 * ipa-inline.c (inline_small_functions): Fix a typo. * gcc.c-torture/compile/pr84425.c: New test. From-SVN: r257772
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/ipa-inline.c2
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/pr84425.c17
4 files changed, 28 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a2199d9..f41bb40 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2018-02-16 Jakub Jelinek <jakub@redhat.com>
+
+ PR ipa/84425
+ * ipa-inline.c (inline_small_functions): Fix a typo.
+
2018-02-16 Nathan Sidwell <nathan@acm.org>
* doc/extend.texi (Backwards Compatibility): Americanize 'behaviour'.
diff --git a/gcc/ipa-inline.c b/gcc/ipa-inline.c
index f56a1a6..b7f213f 100644
--- a/gcc/ipa-inline.c
+++ b/gcc/ipa-inline.c
@@ -1782,7 +1782,7 @@ inline_small_functions (void)
struct cgraph_node *n2;
int id = dfs->scc_no + 1;
for (n2 = node; n2;
- n2 = ((struct ipa_dfs_info *) node->aux)->next_cycle)
+ n2 = ((struct ipa_dfs_info *) n2->aux)->next_cycle)
if (opt_for_fn (n2->decl, optimize))
{
struct ipa_fn_summary *info2 = ipa_fn_summaries->get (n2);
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 7925963..9a156a6 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2018-02-16 Jakub Jelinek <jakub@redhat.com>
+
+ PR ipa/84425
+ * gcc.c-torture/compile/pr84425.c: New test.
+
2018-02-16 Marek Polacek <polacek@redhat.com>
Jakub Jelinek <jakub@redhat.com>
diff --git a/gcc/testsuite/gcc.c-torture/compile/pr84425.c b/gcc/testsuite/gcc.c-torture/compile/pr84425.c
new file mode 100644
index 0000000..5d3d325
--- /dev/null
+++ b/gcc/testsuite/gcc.c-torture/compile/pr84425.c
@@ -0,0 +1,17 @@
+/* PR ipa/84425 */
+
+void bar (int);
+
+void
+foo (int x)
+{
+ if (x < 5)
+ bar (x);
+}
+
+__attribute__((optimize(0))) void
+bar (int x)
+{
+ if (x > 10)
+ foo (x);
+}