diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2016-12-08 02:13:56 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2016-12-08 02:13:56 +0000 |
commit | d93779da151a46532353c07b704b8e569ed1c81a (patch) | |
tree | 5ddb55a78c780c26a00c17f01d1767e4c765d831 /clang/test/Headers/Inputs | |
parent | fd461fe360c3275effadb0ff5457f5820f07e891 (diff) | |
download | bcm5719-llvm-d93779da151a46532353c07b704b8e569ed1c81a.tar.gz bcm5719-llvm-d93779da151a46532353c07b704b8e569ed1c81a.zip |
[Headers] Enable #include_next<float.h> on Darwin
Allows darwin targets to provide additional definitions and
implementation specifc values for float.h
rdar://problem/21961491
llvm-svn: 289018
Diffstat (limited to 'clang/test/Headers/Inputs')
-rw-r--r-- | clang/test/Headers/Inputs/usr/include/float.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/Headers/Inputs/usr/include/float.h b/clang/test/Headers/Inputs/usr/include/float.h new file mode 100644 index 00000000000..9dab891b972 --- /dev/null +++ b/clang/test/Headers/Inputs/usr/include/float.h @@ -0,0 +1,6 @@ +#ifndef SYSFLOAT_H +#define SYSFLOAT_H + +#define FLT_HAS_SUBNORM 1 + +#endif /* SYSFLOAT_H */ |