From patchwork Fri Dec 5 19:47:56 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Senkevich X-Patchwork-Id: 418288 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id E6A681400E7 for ; Sat, 6 Dec 2014 06:48:38 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:from:date:message-id:subject:to :content-type; q=dns; s=default; b=XbaNQu0zZXkObLbBRW6KNhkMHHT5O we+6t+vtzSyqUv92j+x3RAtE1/vcVeBazZFkNOsPF5efoDeR8OLDo6KuJyPklNmQ T4jD4Elf1p+70m/4Lg3k/Cv2udpCqIP87Q9M0toDxGxIwtnJ1wsl66K2+vg41K8k lcl1peohb7swJA= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:from:date:message-id:subject:to :content-type; s=default; bh=UfIx/j350PzEo4XS6FUknpLPCWs=; b=OMB nqbMRw/L29tb2XJGfFgErLJu19xd8STMYQtU9T5POjlpVMNiODLhEf5+6IcHuQmF V6La3sOu6TxMVttHFIGKKn1XHgkoo5fzS79Orjjfb5VQMjcMMFZRoapw4SJot0AR Qr/7YphIXlF64GAYBvCmBdmEJNQUR+BqHqrUa+XM= Received: (qmail 31563 invoked by alias); 5 Dec 2014 19:48:32 -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 31548 invoked by uid 89); 5 Dec 2014 19:48:31 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-la0-f53.google.com X-Received: by 10.152.19.6 with SMTP id a6mr4598037lae.9.1417808906547; Fri, 05 Dec 2014 11:48:26 -0800 (PST) MIME-Version: 1.0 From: Andrew Senkevich Date: Fri, 5 Dec 2014 23:47:56 +0400 Message-ID: Subject: [PATCH] Removal of duplication of -frounding-math for math tests To: libc-alpha This patch is removal of duplication of -frounding-math for math tests because it comes from math-flags in Makeconfig. ChangeLog * math/Makefile: duplicated -frounding-math removed. Is it ok for trunk? --- WBR, Andrew diff --git a/math/Makefile b/math/Makefile index 866bc0f..9ec450b 100644 --- a/math/Makefile +++ b/math/Makefile @@ -126,9 +126,9 @@ $(objpfx)test-ldouble.o: $(objpfx)libm-test.stmp $(objpfx)test-ildoubl.o: $(objpfx)libm-test.stmp endif -CFLAGS-test-float.c = -fno-inline -ffloat-store -fno-builtin -frounding-math -CFLAGS-test-double.c = -fno-inline -ffloat-store -fno-builtin -frounding-math -CFLAGS-test-ldouble.c = -fno-inline -ffloat-store -fno-builtin -frounding-math +CFLAGS-test-float.c = -fno-inline -ffloat-store -fno-builtin +CFLAGS-test-double.c = -fno-inline -ffloat-store -fno-builtin +CFLAGS-test-ldouble.c = -fno-inline -ffloat-store -fno-builtin CFLAGS-test-tgmath.c = -fno-builtin # The following testcase uses very long lines (>3 million), so it may take a # while to compile it. See: http://llvm.org/bugs/show_bug.cgi?id=14106 and @@ -136,15 +136,12 @@ CFLAGS-test-tgmath.c = -fno-builtin CFLAGS-test-tgmath2.c = -fno-builtin CFLAGS-test-tgmath-ret.c = -fno-builtin CFLAGS-test-powl.c = -fno-builtin -CFLAGS-test-test-fenv.c = -frounding-math -CFLAGS-test-misc.c = -frounding-math CPPFLAGS-test-ifloat.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ \ - -DTEST_FAST_MATH -fno-builtin -frounding-math + -DTEST_FAST_MATH -fno-builtin CPPFLAGS-test-idouble.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ \ - -DTEST_FAST_MATH -fno-builtin -frounding-math + -DTEST_FAST_MATH -fno-builtin CPPFLAGS-test-ildoubl.c = -U__LIBC_INTERNAL_MATH_INLINES -D__FAST_MATH__ \ - -DTEST_FAST_MATH -fno-builtin -frounding-math - + -DTEST_FAST_MATH -fno-builtin # The -lieee module sets the _LIB_VERSION_ switch to IEEE mode # for error handling in the -lm functions.