[libcxx] r258900 - [libcxx] Remove -Wpadded from buildit script.

Akira Hatanaka via cfe-commits cfe-commits at lists.llvm.org
Tue Jan 26 17:55:11 PST 2016


Author: ahatanak
Date: Tue Jan 26 19:55:11 2016
New Revision: 258900

URL: http://llvm.org/viewvc/llvm-project?rev=258900&view=rev
Log:
[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

Modified:
    libcxx/trunk/lib/buildit

Modified: libcxx/trunk/lib/buildit
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/lib/buildit?rev=258900&r1=258899&r2=258900&view=diff
==============================================================================
--- libcxx/trunk/lib/buildit (original)
+++ libcxx/trunk/lib/buildit Tue Jan 26 19:55:11 2016
@@ -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-*)




More information about the cfe-commits mailing list