From: Chad Rosier Date: Tue, 26 Jan 2016 15:52:05 +0000 (+0000) Subject: [Driver] Make sure -fno-math-builtin option is being passed by the driver. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71320339649c8f7022aeeb68dd2743eb83be0bc6;p=clang [Driver] Make sure -fno-math-builtin option is being passed by the driver. Support for the -fno-math-builtin option was added in r186899. The codegen side is being tested in test/CodeGen/nomathbuiltin.c. The missing part was just passing the option through the driver. PR26317 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@258814 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index faec8a1c3f..a53319202f 100644 --- a/lib/Driver/Tools.cpp +++ b/lib/Driver/Tools.cpp @@ -5465,12 +5465,13 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA, options::OPT_fno_apple_pragma_pack, false)) CmdArgs.push_back("-fapple-pragma-pack"); + // Process -fno-math-builtin options. // le32-specific flags: // -fno-math-builtin: clang should not convert math builtins to intrinsics // by default. - if (getToolChain().getArch() == llvm::Triple::le32) { + if (Args.hasArg(options::OPT_fno_math_builtin) || + getToolChain().getArch() == llvm::Triple::le32) CmdArgs.push_back("-fno-math-builtin"); - } // Default to -fno-builtin-str{cat,cpy} on Darwin for ARM. // diff --git a/test/CodeGen/nomathbuiltin.c b/test/CodeGen/nomathbuiltin.c index 35e7c567e6..86dc4e363e 100644 --- a/test/CodeGen/nomathbuiltin.c +++ b/test/CodeGen/nomathbuiltin.c @@ -9,4 +9,3 @@ double foo(double a, double b) { return pow(a, b); // CHECK: call {{.*}}double @pow } - diff --git a/test/Driver/clang_f_opts.c b/test/Driver/clang_f_opts.c index 25a1930bdd..bfe8004550 100644 --- a/test/Driver/clang_f_opts.c +++ b/test/Driver/clang_f_opts.c @@ -191,6 +191,9 @@ // RUN: %clang -### -S -fexec-charset=iso-8859-1 -o /dev/null %s 2>&1 | FileCheck -check-prefix=CHECK-INVALID-INPUT-CHARSET %s // CHECK-INVALID-INPUT-CHARSET: error: invalid value 'iso-8859-1' in '-fexec-charset=iso-8859-1' +// RUN: %clang -### -S -fno-math-builtin %s 2>&1 | FileCheck -check-prefix=CHECK-NO-MATH-BUILTIN %s +// CHECK-NO-MATH-BUILTIN: "-fno-math-builtin" + // Test that we don't error on these. // RUN: %clang -### -S -Werror \ // RUN: -falign-functions -falign-functions=2 -fno-align-functions \