<p dir="ltr"><br>
On Oct 1, 2013 9:48 AM, "Marshall Clow" <<a href="mailto:mclow.lists@gmail.com">mclow.lists@gmail.com</a>> wrote:<br>
><br>
> On Oct 1, 2013, at 9:41 AM, Yaron Keren <<a href="mailto:yaron.keren@gmail.com">yaron.keren@gmail.com</a>> wrote:<br>
><br>
>> I am calling clang using a custom driver, and it seems clang diagnostics state is different than the command line driver. I'm looking into this issue now.<br>
>><br>
>> This aside, I think that clang turns off all warnings for system include files, so compiling from the command line effectively hides this warning as well as potential others.<br>
><br>
><br>
> I don't think that's true; (the 'all warnings' part), but lang definitely behaves somewhat differently when compiling a system header file.</p>
<p dir="ltr">Clang and other compilers definitely suppress a lot (if not all) warnings in system headers as its generally assumed to be unactionable by an end user, so not a useful thing to notify them of.</p>
<p dir="ltr">See a recent bug (or perhaps this was found/discussed internally) found in libstdc++ involving a bool returning function that fell off the end. No -Wreturn-type warning, just the sigill at runtime. If we're not already building libc++ in such a way that it avoids the system header suppressions, we probably should fix that for the sake of avoiding bugs like this.</p>

<p dir="ltr">><br>
>> So the question is wether this is a real issue or not, as the suffixes in chrono are lacking an underscore but are not user-defined but system-defined. <br>
><br>
><br>
> If you're not compiling a system include file, then that's a fine error.<br>
> UDL's that do not start with '_' are reserved.<br>
><br>
> But there has to be a way for libc++ to define them.<br>
><br>
> I would say that this is not a real issue.<br>
><br>
> -- Marshall<br>
><br>
><br>
>> 2013/10/1 Marshall Clow <<a href="mailto:mclow.lists@gmail.com">mclow.lists@gmail.com</a>><br>
>>><br>
>>> On Sep 30, 2013, at 11:48 PM, Yaron Keren <<a href="mailto:yaron.keren@gmail.com">yaron.keren@gmail.com</a>> wrote:<br>
>>><br>
>>>> Hi,<br>
>>>><br>
>>>> Trying to compile libcxx using ToT clang results in several warnings such as:<br>
>>>><br>
>>>> libcxx/string:4169:24: warning: user-defined literal suffixes not starting with '_' are reserved<br>
>>>>     basic_string<char> operator "" s( const char *__str, size_t __len )<br>
>>>><br>
>>>> libcxx/chrono:955:29: warning: user-defined literal suffixes not starting with '_' are reserved<br>
>>>>     constexpr chrono::hours operator"" h(unsigned long long __h)<br>
>>>>                        ^<br>
>>>> debugging, I see Sema::CheckLiteralOperatorDeclaration calling NumericLiteralParser::isValidUDSuffix which returns true (valid) for the "s" and "h" suffixes.  This prevents the second optional part of the warning, "no literal will invoke this operator" but not the first one shown above.<br>

>>><br>
>>><br>
>>> I'm not seeing this at all  (on Mac OS).<br>
>>><br>
>>> I just built ToT clang and then built libc++ - no warnings.<br>
>>> Then I tried just building individual source files from libc++ to check. No warnings either.<br>
>>><br>
>>> $ /Sources/LLVM/build/llvm-cmake-nodebug/bin/clang++ --version<br>
>>> clang version 3.4 (trunk 191753)<br>
>>> Target: x86_64-apple-darwin12.5.0<br>
>>> Thread model: posix<br>
>>> $ <br>
>>> $ cd /Sources/LLVM/libcxx/lib<br>
>>> $ TRIPLE=-apple- CXX=$LLVM/build/llvm-cmake-nodebug/bin/clang++ ./buildit<br>
>>> [ output snipped; but no warnings ]<br>
>>> $<br>
>>> $ TRIPLE=-apple- CXX=$LLVM/build/llvm-cmake-nodebug/bin/clang++ ./buildit14<br>
>>> [ buildit14 is a copy of buildit that sets "-std=c++1y" instead of "-std=c++11" ]<br>
>>> [ output snipped; but no warnings ]<br>
>>> $<br>
>>> $/Sources/LLVM/build/llvm-cmake-nodebug/bin/clang++ -c -g -Os -arch i386 -arch x86_64 -nostdinc++ -std=c++11 -fstrict-aliasing -Wall -Wextra -Wshadow -Wconversion -Wnewline-eof -Wpadded -Wmissing-prototypes -Wstrict-aliasing=2 -Wstrict-overflow=4 -I../include ../src/chrono.cpp<br>

>>> $<br>
>>> $ /Sources/LLVM/build/llvm-cmake-nodebug/bin/clang++ -c -g -Os -arch i386 -arch x86_64 -nostdinc++ -std=c++1y -fstrict-aliasing -Wall -Wextra -Wshadow -Wconversion -Wnewline-eof -Wpadded -Wmissing-prototypes -Wstrict-aliasing=2 -Wstrict-overflow=4 -I../include ../src/chrono.cpp<br>

>>> $<br>
>>><br>
>>><br>
>>> -- Marshall<br>
>>><br>
>>> Marshall Clow     Idio Software   <mailto:<a href="mailto:mclow.lists@gmail.com">mclow.lists@gmail.com</a>><br>
>>><br>
>>> A.D. 1517: Martin Luther nails his 95 Theses to the church door and is promptly moderated down to (-1, Flamebait).<br>
>>>         -- Yu Suzuki<br>
>>><br>
>><br>
><br>
> -- Marshall<br>
><br>
> Marshall Clow     Idio Software   <mailto:<a href="mailto:mclow.lists@gmail.com">mclow.lists@gmail.com</a>><br>
><br>
> A.D. 1517: Martin Luther nails his 95 Theses to the church door and is promptly moderated down to (-1, Flamebait).<br>
>         -- Yu Suzuki<br>
><br>
><br>
> _______________________________________________<br>
> cfe-dev mailing list<br>
> <a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
><br>
</p>