From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1256) id C3AFD3858D1E; Mon, 14 Nov 2022 22:03:41 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C3AFD3858D1E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1668463421; bh=PkliIiMhbvdIRUfcg03CfJ2lMyAse5dIOK+FOWJavOY=; h=From:To:Subject:Date:From; b=nhILxP1Aw2JlJpEzEH5IvocErbjs+k63i+RM38wBir25lTDE2ND+z8BlqZvX3+10n xNco9EWmayAGIbtrEkoChnyW7NWIo239X8oMHraHJ571Hzos3KsyEsPpiLcDBAIxZ0 3leW5wHrkYDqxiQXflOKyxWHGHBWO0z1J6C8XdPs= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Maciej W. Rozycki To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-4034] ira: Fix `create_insn_allocnos' `outer' parameter documentation X-Act-Checkin: gcc X-Git-Author: Maciej W. Rozycki X-Git-Refname: refs/heads/master X-Git-Oldrev: 2044cf2d6591f7e80411141cbb81b135fa1eca1b X-Git-Newrev: e7c12a921525b2aa27ca4814c42c63d61a6d954e Message-Id: <20221114220341.C3AFD3858D1E@sourceware.org> Date: Mon, 14 Nov 2022 22:03:41 +0000 (GMT) List-Id: https://gcc.gnu.org/g:e7c12a921525b2aa27ca4814c42c63d61a6d954e commit r13-4034-ge7c12a921525b2aa27ca4814c42c63d61a6d954e Author: Maciej W. Rozycki Date: Mon Nov 14 22:02:11 2022 +0000 ira: Fix `create_insn_allocnos' `outer' parameter documentation The parameter of `create_insn_allocnos' for any parent expression of `x' has always been called `outer' rather than `parent', just as added by commit d1bb282efbf9 ("Fix for "FAIL: tmpdir-gcc.dg-struct-layout-1/t028 c_compat_x_tst.o compile, (internal compiler error)""), . Correct inline documentation accordingly. gcc/ * ira-build.cc (create_insn_allocnos): Fix documentation. Diff: --- gcc/ira-build.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/ira-build.cc b/gcc/ira-build.cc index 3bf117cbf8e..6bb7c30fb9e 100644 --- a/gcc/ira-build.cc +++ b/gcc/ira-build.cc @@ -1832,7 +1832,7 @@ static basic_block curr_bb; /* This recursive function creates allocnos corresponding to pseudo-registers containing in X. True OUTPUT_P means that X is - an lvalue. PARENT corresponds to the parent expression of X. */ + an lvalue. OUTER corresponds to the parent expression of X. */ static void create_insn_allocnos (rtx x, rtx outer, bool output_p) {