diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2016-01-26 15:52:05 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2016-01-26 15:52:05 +0000 |
commit | 17d2e8789cce457db238058c824796b34e56a473 (patch) | |
tree | ad93848f8862da520f4bc11f238b6b27659c3517 /clang/test/CodeGen/nomathbuiltin.c | |
parent | 38fd54edc52bea22739fde8639b2ac1ffaeca425 (diff) | |
download | bcm5719-llvm-17d2e8789cce457db238058c824796b34e56a473.tar.gz bcm5719-llvm-17d2e8789cce457db238058c824796b34e56a473.zip |
[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
llvm-svn: 258814
Diffstat (limited to 'clang/test/CodeGen/nomathbuiltin.c')
-rw-r--r-- | clang/test/CodeGen/nomathbuiltin.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/test/CodeGen/nomathbuiltin.c b/clang/test/CodeGen/nomathbuiltin.c index 35e7c567e68..86dc4e363ea 100644 --- a/clang/test/CodeGen/nomathbuiltin.c +++ b/clang/test/CodeGen/nomathbuiltin.c @@ -9,4 +9,3 @@ double foo(double a, double b) { return pow(a, b); // CHECK: call {{.*}}double @pow } - |