From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ot1-x32c.google.com (mail-ot1-x32c.google.com [IPv6:2607:f8b0:4864:20::32c]) by sourceware.org (Postfix) with ESMTPS id 967603858406 for ; Wed, 21 Sep 2022 13:51:18 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 967603858406 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=linaro.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=linaro.org Received: by mail-ot1-x32c.google.com with SMTP id cm7-20020a056830650700b006587fe87d1aso3963425otb.10 for ; Wed, 21 Sep 2022 06:51:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=content-transfer-encoding:mime-version:message-id:date:subject:to :from:from:to:cc:subject:date; bh=rVQWgB71U8evr8kvCtAQWFtSnMGM4NgIdbjBNbytHVQ=; b=nGuADNjP9MlF39LY2YMLv1huoIWcwZ9yGC3XHynJARKmjZBQ6sujZcMFkiczLBJivF 3QSwyWXDgNtRZMhwljOlAVEK2JYb1MOf9E9ihHgHa5DiqAVDxxhKvBVsjYI0s4emEdQd 9lgntva9Stb1hAg8HxNmL8XjM2W8NVo8mjwvQ2URK3Wol55GvwRKyVicF0JjK1d3B3Cf jQCFgqI+kX3lnv3bwYbDY2MIjNNxq+cH256jNkWnVmB/6aBpohIByKbzFDQREUVHy1XX tk81J2Bwd1qeikRqw1fginDt5ixn4uG8bCqUz1bNAglbacrlPIovlw3iQi1mU7AjI4iM Ez/g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:subject:to :from:x-gm-message-state:from:to:cc:subject:date; bh=rVQWgB71U8evr8kvCtAQWFtSnMGM4NgIdbjBNbytHVQ=; b=5tR+lWBJZ254XHb/yVuIyVXjtXSfdiI/aZquEdghHRL21nIoT8EHG9wVLSVwEDZ43D j1eZhgpe1DjPN0xk6bBZQNGtv8FPRrNC00lIJOxo5fsZUdwe5D+RbObGDZF4WeAZQi6w 6DPZC3C+suTjbKGQoouP5/hVNIqHKh/6uT+ZVwvRg/8ScZ4LdZtmWVBLOHLe8Wuo3blh 9XzVEAd6Izt1RWlEA9CkOsbjeRGXp3LLZ6QFfNE8vn1J/bw6fND/qIIu3cqyaUpkX7bJ 12mkFeqs7rJQ478d4iVoP0Pbs9yUg60V5ZloguWsDJq2iUjA9UOsHgpOGK/CcmMGMhGC cawQ== X-Gm-Message-State: ACrzQf2jbqqV424C12AQRyPSNjyfOV5f/CVIai4XzQqjp26ObCFnYj/Y g9tbIB0TAKtF7V2141WUVuwvuHZEoijXu3l+ X-Google-Smtp-Source: AMsMyM65wEbAt+9sts2keLEtnxLVdggswsnE8jogklSGWjxzKEwnjBPkkNJofgnABZLj4pL5OS6QOg== X-Received: by 2002:a05:6830:1d89:b0:655:d851:365f with SMTP id y9-20020a0568301d8900b00655d851365fmr11706693oti.293.1663768277826; Wed, 21 Sep 2022 06:51:17 -0700 (PDT) Received: from mandiga.. ([2804:1b3:a7c1:c266:dbbf:9e84:6582:5289]) by smtp.gmail.com with ESMTPSA id a38-20020a05687046a600b0010bf07976c9sm1669476oap.41.2022.09.21.06.51.16 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 21 Sep 2022 06:51:17 -0700 (PDT) From: Adhemerval Zanella To: libc-alpha@sourceware.org Subject: [PATCH 0/6] Fix -Os build Date: Wed, 21 Sep 2022 10:51:02 -0300 Message-Id: <20220921135108.3324737-1-adhemerval.zanella@linaro.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-5.4 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: This patchset fix the glibc build including tests with -Os. I checked with GCC 12 for all supported ABI and run a full make check for x86_64 and i686 without any regressions. Adhemerval Zanella (5): posix: Suppress -Os warnings on fnmatch posix: Suppress -Os may be used uninitialized warnings on regexec rt: Initialize mq_send input on tst-mqueue{5,6} sunrpc: Suppress GCC -Os warning on user2netname x86: Fix -Os build (BZ #29576) Martin Jansa (1): locale: prevent maybe-uninitialized errors with -Os [BZ #19444] locale/weight.h | 7 ++++++ posix/fnmatch_loop.c | 31 ++++++++++++++++++++++++++ posix/regexec.c | 6 +++++ rt/tst-mqueue5.c | 2 +- rt/tst-mqueue6.c | 2 +- sunrpc/netname.c | 6 +++++ sysdeps/x86_64/multiarch/rtld-strcpy.S | 18 +++++++++++++++ 7 files changed, 70 insertions(+), 2 deletions(-) create mode 100644 sysdeps/x86_64/multiarch/rtld-strcpy.S -- 2.34.1