summaryrefslogtreecommitdiffstats
path: root/clang/test/Lexer/char-literal.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Better diagnostics for string initialization.Hans Wennborg2013-05-151-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit improves Clang's diagnostics for string initialization. Where it would previously say: /tmp/a.c:3:9: error: array initializer must be an initializer list wchar_t s[] = "Hi"; ^ /tmp/a.c:4:6: error: array initializer must be an initializer list or string literal char t[] = L"Hi"; ^ It will now say /tmp/a.c:3:9: error: initializing wide char array with non-wide string literal wchar_t s[] = "Hi"; ^ /tmp/a.c:4:6: error: initializing char array with wide string literal char t[] = L"Hi"; ^ As a bonus, it also fixes the fact that Clang would previously reject this valid C11 code: char16_t s[] = u"hi"; char32_t t[] = U"hi"; because it would only recognize the built-in types for char16_t and char32_t, which do not exist in C. llvm-svn: 181880
* When lexing in C11 mode, accept unicode character and string literals, per C11Richard Smith2013-03-091-1/+17
| | | | | | 6.4.4.4/1 and 6.4.5/1. llvm-svn: 176780
* Fix off-by-one error in UTF-16 encoding: don't try to use a surrogate pair ↵Richard Smith2012-06-131-0/+3
| | | | | | for U+FFFF. llvm-svn: 158391
* Add and update tests for character literalsSeth Cantrell2012-01-181-0/+24
llvm-svn: 148392
OpenPOWER on IntegriCloud