diff options
author | Akira Hatanaka <ahatanaka@apple.com> | 2016-01-27 01:55:11 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@apple.com> | 2016-01-27 01:55:11 +0000 |
commit | 6fa38f5ba5bc16c4ef7b902809d492ab422a74dd (patch) | |
tree | 2a2cd18a0a7baf1ce704256da00d7a34405b6d1c /libcxx/lib/buildit | |
parent | 3e80c4af7bf8f0fa1f8c5cc4600d224d674dff09 (diff) | |
download | bcm5719-llvm-6fa38f5ba5bc16c4ef7b902809d492ab422a74dd.tar.gz bcm5719-llvm-6fa38f5ba5bc16c4ef7b902809d492ab422a74dd.zip |
[libcxx] Remove -Wpadded from buildit script.
Per discussion with Eric and Joerg, this commit removes -Wpadded to
silence the warning about the padding inserted at the tail of struct
_Rep_base.
rdar://problem/23932550
llvm-svn: 258900
Diffstat (limited to 'libcxx/lib/buildit')
-rwxr-xr-x | libcxx/lib/buildit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/lib/buildit b/libcxx/lib/buildit index 7e3bc2ed2a9..6451a9bfad6 100755 --- a/libcxx/lib/buildit +++ b/libcxx/lib/buildit @@ -41,7 +41,7 @@ then fi EXTRA_FLAGS="-nostdinc++ -std=${CXX_LANG} -fstrict-aliasing -Wall -Wextra -Wshadow -Wconversion \ - -Wpadded -Wstrict-aliasing=2 -Wstrict-overflow=4 " + -Wstrict-aliasing=2 -Wstrict-overflow=4 " case $TRIPLE in *-apple-*) |