From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 475943858D35; Thu, 2 Nov 2023 22:18:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 475943858D35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1698963483; bh=3HK72y9/YolUuPPyeke2S+urLRpiSK2uXW+wQXfhk1Y=; h=From:To:Subject:Date:From; b=sgfyI4Ef9oS/FrgRAQtO7ojUSNLZBeXIXNWz6knsTrJTYU/dwHgLuXHEFtFm6We8K LLdyyzyygwlBxmnVMQxUjWBqt8nX7AlWxkFXo2BEG/ilcv0OTBosSF5tQyC3s0WYgk YHAJlKrNR31PVICc8qVIERPZ7BfXqz80CZ+2ZyfY= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/112357] New: Documentation for vect-max-peeling-for-alignment references -1 but -1 does not work Date: Thu, 02 Nov 2023 22:18:02 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: documentation X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status keywords bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D112357 Bug ID: 112357 Summary: Documentation for vect-max-peeling-for-alignment references -1 but -1 does not work Product: gcc Version: 14.0 Status: UNCONFIRMED Keywords: documentation Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: pinskia at gcc dot gnu.org Target Milestone: --- Using `-O2 --param vect-max-peeling-for-alignment=3D-1` provides the follow= ing error message: ``` g++: error: argument to '--param=3Dvect-max-peeling-for-alignment=3D' shoul= d be a non-negative integer ``` But https://gcc.gnu.org/onlinedocs//gcc/Optimize-Options.html documents -1: ``` vect-max-peeling-for-alignment The maximum number of loop peels to enhance access alignment for vectorizer. Value -1 means no limit. ```=