From patchwork Fri Oct 7 17:22:29 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adhemerval Zanella Netto X-Patchwork-Id: 16353 Received: (qmail 31311 invoked by alias); 7 Oct 2016 17:22:53 -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 31285 invoked by uid 89); 7 Oct 2016 17:22:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE, RCVD_IN_SORBS_SPAM, SPF_PASS autolearn=no version=3.3.2 spammy= X-HELO: mail-vk0-f48.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=z8JaDhmwzOPqL4YbZWSTH7fGaykXCZsvNfixI5V0GXo=; b=Wx9+rE/yaykckJ9nt8tinJ5tpU3VLh97qICnguG/yTdGtZR8tVW/iRKfdfK/r/ft+u WQIwh1SVBBfS6Jrir8vlVZ9lkTQ4wb4FqH/mWhuL4k/ZNOUXFsIZmQXUs3DwdA2WP729 6aa1kKV/1RXl+QW1PGyrQ8ksQywgqEcXr2CEuPntEMvKebrQxrD4zsBN3LYjiQNs6BJJ Di9BxLMUJdYQwh08Ff+dI/NE89UAxjcrEjF3iqqHUr3An6ZoX97yTbAvHKxy70PBiLPp r4FmuAuJqHBP+3mW+gv9AR3dB2umv9Aat9MrLzK1E6nLryf0ByX1unsP9n4xSUf4r9H1 aILw== X-Gm-Message-State: AA6/9RkTIx7Zn+KfwEug0ZC4VigxOsl8AzRGkypGvIAuv9VDJwDKnWl0XjBQVqyKInJLZuEn X-Received: by 10.31.152.77 with SMTP id a74mr15366810vke.157.1475860960298; Fri, 07 Oct 2016 10:22:40 -0700 (PDT) From: Adhemerval Zanella To: libc-alpha@sourceware.org Subject: [COMMITTED] Fix iseqsig for ports that do not support FE_INVALID Date: Fri, 7 Oct 2016 14:22:29 -0300 Message-Id: <1475860949-23081-1-git-send-email-adhemerval.zanella@linaro.org> Microblaze, nios2, and tile do not support FE_INVALID and thus define feraiseexcept as a empty macro. Include math-private.h to get such definition. Checked with a build for microblaze, nios2, and tilepro. * math/s_iseqsig_template.c: Include math-private.h. --- ChangeLog | 2 ++ math/s_iseqsig_template.c | 1 + 2 files changed, 3 insertions(+) diff --git a/math/s_iseqsig_template.c b/math/s_iseqsig_template.c index ebdae64..5969206 100644 --- a/math/s_iseqsig_template.c +++ b/math/s_iseqsig_template.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include