From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pg1-x532.google.com (mail-pg1-x532.google.com [IPv6:2607:f8b0:4864:20::532]) by sourceware.org (Postfix) with ESMTPS id 180D03992436 for ; Thu, 29 Apr 2021 12:54:25 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 180D03992436 Received: by mail-pg1-x532.google.com with SMTP id m12so6330193pgr.9 for ; Thu, 29 Apr 2021 05:54:25 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=FXy3Syhc+oNswnDnGtzKewSCF4T/rrDdFLmy1d+tpMc=; b=T/HqysBkHB8DcgpoRCMfZMsqnFsstZfS7/+Hv/lDt97yikPtcPe58ROXSiidEVn0g1 3Tm6I8FrVOvjkvwZQd0Vx0rydzgHf9mzpeUtEhMRt9aN6BgBhf3GBhkmpyeEvUc3o7VO vBw1XvYQfxitmTaZUPIk0HFSpIf24gXhL8dAwlBtBQs/jBEmdf/uSzgCxgU6NtFtjNo7 bImx1ggFrClWM40wJP1387YsjoiQTIUjYzt++AwHr/nBkEbKAU+xVhvTrQRHDsisiScR DDmDuVblPFSUhZcwPIPamv62v8lCE/dqdvL05SkI4MJf1tfzOej5wQHFKngKojFcMxvK SIng== X-Gm-Message-State: AOAM530E/u9r26B20Zu8o3acFxNFxbDPvPK/OQkABbT75E/Z2HECq4MM 5PjzSpPRMy51sFkw2+jHvweP9fvg3ACkMg== X-Google-Smtp-Source: ABdhPJyjTfgZq9c656eQ0Q7IIUIeQZK+x2nOdFePxrYRJapn8xCZPIhIyApJOqaubbaoYREfOMtV/Q== X-Received: by 2002:a63:c13:: with SMTP id b19mr15435108pgl.198.1619700864080; Thu, 29 Apr 2021 05:54:24 -0700 (PDT) Received: from gnu-cfl-2.localdomain ([172.58.35.177]) by smtp.gmail.com with ESMTPSA id f20sm2692692pgb.47.2021.04.29.05.54.19 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 29 Apr 2021 05:54:22 -0700 (PDT) Received: from gnu-cfl-2.. (localhost [IPv6:::1]) by gnu-cfl-2.localdomain (Postfix) with ESMTP id EA3D7C1240; Thu, 29 Apr 2021 05:54:15 -0700 (PDT) From: "H.J. Lu" To: gcc-patches@gcc.gnu.org Subject: [PATCH 12/12] x86: Update gcc.target/i386/incoming-11.c Date: Thu, 29 Apr 2021 05:54:15 -0700 Message-Id: <20210429125415.1634118-13-hjl.tools@gmail.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210429125415.1634118-1-hjl.tools@gmail.com> References: <20210429125415.1634118-1-hjl.tools@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-3035.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Apr 2021 12:54:26 -0000 Expect no stack realignment since we no longer realign stack when copying data. * gcc.target/i386/incoming-11.c: Expect no stack realignment. --- gcc/testsuite/gcc.target/i386/incoming-11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/gcc.target/i386/incoming-11.c b/gcc/testsuite/gcc.target/i386/incoming-11.c index a830c96f7d1..4b822684b88 100644 --- a/gcc/testsuite/gcc.target/i386/incoming-11.c +++ b/gcc/testsuite/gcc.target/i386/incoming-11.c @@ -15,4 +15,4 @@ void f() for (i = 0; i < 100; i++) q[i] = 1; } -/* { dg-final { scan-assembler "andl\[\\t \]*\\$-16,\[\\t \]*%esp" } } */ +/* { dg-final { scan-assembler-not "andl\[\\t \]*\\$-16,\[\\t \]*%esp" } } */ -- 2.31.1