summaryrefslogtreecommitdiff
path: root/lib/Lex/LiteralSupport.cpp
Commit message (Expand)AuthorAge
...
* Implement warning for non-wide string literals with an unexpected encoding. ...Eli Friedman2012-02-11
* Fixing hex floating literal support so that it handles 0x.2p2 properly.Aaron Ballman2012-02-08
* Hex literals without a significand no longer crash the lexer. Fixes bug 7910Aaron Ballman2012-02-07
* Basic: import SmallString<> into clang namespaceDylan Noblesmith2012-02-05
* stop claiming unicode escape sequences are too long in strings, because they ...Seth Cantrell2012-01-18
* Improves support for Unicode in character literalsSeth Cantrell2012-01-18
* Fix a regression in wide character codegen. See PR11369.Nico Weber2011-11-14
* Fix one last place where we weren't writing into a string literal consistently.Eli Friedman2011-11-05
* Use native endianness for writing out character escapes to the result buffer ...Eli Friedman2011-11-02
* Perform proper conversion for strings encoded in the source file as UTF-8. (...Eli Friedman2011-11-01
* We do parse hexfloats in C++11; make it actually work.Douglas Gregor2011-10-12
* When parsing a character literal, extract the characters from theDouglas Gregor2011-09-27
* Rename Diagnostic to DiagnosticsEngine as per issue 5397David Blaikie2011-09-25
* Fix missing includes for llvm_unreachableDavid Blaikie2011-09-23
* Switch assert(0/false) llvm_unreachable.David Blaikie2011-09-23
* Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t...Francois Pichet2011-09-17
* Allow C99 hexfloats in C++0x mode. This change resolves the standardsDouglas Gregor2011-08-30
* Warn about and truncate UCNs that are too big for their character literal type.Craig Topper2011-08-19
* De-Unicode-ify.NAKAMURA Takumi2011-08-12
* Raw string followup. Pass a couple StringRefs by value.Craig Topper2011-08-11
* Add support for C++0x raw string literals.Craig Topper2011-08-11
* Fix comment (test commit)Craig Topper2011-08-08
* Add support for C++0x unicode string and character literals, from Craig Topper!Douglas Gregor2011-07-27
* remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner2011-07-23
* Fix a nasty bug where inside StringLiteralParser:Argyrios Kyrtzidis2011-05-17
* fix a bunch of comment typos found by codespell. Patch byChris Lattner2011-04-15
* Microsoft integer suffix changes:Francois Pichet2011-01-11
* Fix diagnostic for reporting bad escape sequence.Ted Kremenek2010-12-03
* move getSpelling from Preprocessor to Lexer, which it is more conceptually re...Chris Lattner2010-11-17
* propagate preprocessor out of StringLiteralParser. It is nowChris Lattner2010-11-17
* push the preprocessor out of EncodeUCNEscapeChris Lattner2010-11-17
* move AdvanceToTokenCharacter and getLocForEndOfToken fromChris Lattner2010-11-17
* add a static version of PP::AdvanceToTokenCharacter.Chris Lattner2010-11-17
* push use of Preprocessor out farther.Chris Lattner2010-11-17
* push use of Preprocessor out of getOffsetOfStringByte Chris Lattner2010-11-17
* add a static form of the efficient PP::getSpelling method.Chris Lattner2010-11-17
* refactor the interface to StringLiteralParser::getOffsetOfStringByte,Chris Lattner2010-11-17
* allow I128 suffixes in msextensions mode just like i128 suffixes, patchChris Lattner2010-10-14
* Add support for UCNs for character literalsNico Weber2010-10-09
* Add support for 4-byte UCNs like \U12345678. Warn about UCNs in c90 mode.Nico Weber2010-10-06
* Prevent warning when built with assert off.Fariborz Jahanian2010-08-31
* Some support for unicode string constantsFariborz Jahanian2010-08-31
* Revert my user-defined literal commits - r1124{58,60,67} pendingSean Hunt2010-08-30
* Implement C++0x user-defined string literals.Sean Hunt2010-08-29
* Random temporary string cleanup.Benjamin Kramer2010-08-11
* Complain when string literals are too long for the active languageDouglas Gregor2010-07-20
* Remove a dead argument to ProcessUCNEscape.Chris Lattner2010-06-15
* Fix a miscompile of wchar pascal strings.Fariborz Jahanian2010-05-28
* Tell the string literal parser when it's not permitted to emitDouglas Gregor2010-05-26
* emit warn_char_constant_too_large at most once per literal, fixing PR6852Chris Lattner2010-04-16