From patchwork Mon Dec 11 13:18:49 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Lu, Hongjiu" X-Patchwork-Id: 24852 Received: (qmail 98841 invoked by alias); 11 Dec 2017 13:18:52 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 98825 invoked by uid 89); 11 Dec 2017 13:18:51 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, NO_DNS_FOR_FROM, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=Resolve, HX-Amp-Result:UNSCANNABLE X-HELO: mga09.intel.com X-Amp-Result: UNSCANNABLE X-Amp-File-Uploaded: False X-ExtLoop1: 1 Date: Mon, 11 Dec 2017 05:18:49 -0800 From: "H.J. Lu" To: GNU C Library Subject: [PATCH] string: Replace = with += in CFLAGS-tst-xbzero-opt.c Message-ID: <20171211131849.GA35836@intel.com> Reply-To: "H.J. Lu" MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.9.1 (2017-09-22) Replace = with += in CFLAGS-tst-xbzero-opt.c to allow sysdeps Makefile to define CFLAGS-tst-xbzero-opt.c. Any comments? H.J. * string/Makefile (CFLAGS-tst-xbzero-opt.c): Replace = with +=. --- string/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/string/Makefile b/string/Makefile index d7e90a38a5..618b737b13 100644 --- a/string/Makefile +++ b/string/Makefile @@ -75,7 +75,7 @@ CFLAGS-tst-strlen.c = -fno-builtin CFLAGS-stratcliff.c = -fno-builtin CFLAGS-test-ffs.c = -fno-builtin CFLAGS-tst-inlcall.c = -fno-builtin -CFLAGS-tst-xbzero-opt.c = -O3 +CFLAGS-tst-xbzero-opt.c += -O3 # BZ 21006: Resolve all functions but at least explicit_bzero at startup. # Otherwise the test fails on s390x as the memcpy in prepare_test_buffer is # done by loading r4 / r5 with the test_pattern and using store multiple