Age | Commit message (Expand) | Author |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner |
2011-05-17 | Fix a nasty bug where inside StringLiteralParser: | Argyrios Kyrtzidis |
2011-04-15 | fix a bunch of comment typos found by codespell. Patch by | Chris Lattner |
2011-01-11 | Microsoft integer suffix changes: | Francois Pichet |
2010-12-03 | Fix diagnostic for reporting bad escape sequence. | Ted Kremenek |
2010-11-17 | move getSpelling from Preprocessor to Lexer, which it is more conceptually re... | Chris Lattner |
2010-11-17 | propagate preprocessor out of StringLiteralParser. It is now | Chris Lattner |
2010-11-17 | push the preprocessor out of EncodeUCNEscape | Chris Lattner |
2010-11-17 | move AdvanceToTokenCharacter and getLocForEndOfToken from | Chris Lattner |
2010-11-17 | add a static version of PP::AdvanceToTokenCharacter. | Chris Lattner |
2010-11-17 | push use of Preprocessor out farther. | Chris Lattner |
2010-11-17 | push use of Preprocessor out of getOffsetOfStringByte | Chris Lattner |
2010-11-17 | add a static form of the efficient PP::getSpelling method. | Chris Lattner |
2010-11-17 | refactor the interface to StringLiteralParser::getOffsetOfStringByte, | Chris Lattner |
2010-10-14 | allow I128 suffixes in msextensions mode just like i128 suffixes, patch | Chris Lattner |
2010-10-09 | Add support for UCNs for character literals | Nico Weber |
2010-10-06 | Add support for 4-byte UCNs like \U12345678. Warn about UCNs in c90 mode. | Nico Weber |
2010-08-31 | Prevent warning when built with assert off. | Fariborz Jahanian |
2010-08-31 | Some support for unicode string constants | Fariborz Jahanian |
2010-08-30 | Revert my user-defined literal commits - r1124{58,60,67} pending | Sean Hunt |
2010-08-29 | Implement C++0x user-defined string literals. | Sean Hunt |
2010-08-11 | Random temporary string cleanup. | Benjamin Kramer |
2010-07-20 | Complain when string literals are too long for the active language | Douglas Gregor |
2010-06-15 | Remove a dead argument to ProcessUCNEscape. | Chris Lattner |
2010-05-28 | Fix a miscompile of wchar pascal strings. | Fariborz Jahanian |
2010-05-26 | Tell the string literal parser when it's not permitted to emit | Douglas Gregor |
2010-04-16 | emit warn_char_constant_too_large at most once per literal, fixing PR6852 | Chris Lattner |
2010-03-16 | Introduce optional "Invalid" parameters to routines that invoke the | Douglas Gregor |
2010-01-22 | ui64, etc. are valid VS suffixes. | Fariborz Jahanian |
2010-01-10 | Do not parse hexadecimal floating point literals in C++0x mode because they are | Sean Hunt |
2009-12-24 | Diagnose out-of-bounds floating-point constants. Fixes rdar://problem/6974641 | John McCall |
2009-12-23 | Eliminate a completely unnecessary buffer copy when parsing float literals. | John McCall |
2009-11-28 | cleanup parsing of MS integer suffixes a little. this fixes PR5616 | Nuno Lopes |
2009-10-08 | This fixes support for complex literals, reworked to avoid a goto, and | Mike Stump |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-08-16 | Update lexer to work with the new APFloat string parsing. | Erick Tryzelaar |
2009-07-29 | CharLiteralParser::IsMultiChar was sometimes uninitialized. | Daniel Dunbar |
2009-07-14 | Fix the build | Alisdair Meredith |
2009-06-10 | PR4353: Add support for \E as a character escape. | Eli Friedman |
2009-06-05 | Move CharIsSigned from TargetInfo to LangOptions. | Eli Friedman |
2009-06-01 | PR4283: Don't truncate multibyte character constants in the | Eli Friedman |
2009-04-28 | Implement -Wfour-char-constants, which is an extension, not an extwarn, | Chris Lattner |
2009-04-28 | implement -Wmultichar | Chris Lattner |
2009-04-28 | Get rid of some useless uses of NoExtensions. The philosophy here is | Eli Friedman |
2009-04-21 | Use an APInt of target int size to detect overflow while parsing multichars. | Sanjiv Gupta |
2009-04-14 | temporarily revert r69046 | Chris Lattner |
2009-04-14 | Literal value calculation isn't likely to overflow on targets having int as 3... | Sanjiv Gupta |
2009-04-01 | ProcessUCNEscape(): Incorportate some feedback from Chris. | Steve Naroff |
2009-04-01 | Fix pascal string support; testcase from mailing list message. | Eli Friedman |
2009-03-31 | Incorporate feedback from Eli. | Steve Naroff |