aboutsummaryrefslogtreecommitdiff
path: root/lib/Lex/TokenConcatenation.cpp
AgeCommit message (Expand)Author
2013-02-08Simplify logic for avoiding concatenation after numeric constants.Jordan Rose
2013-01-29[Preprocessor] When checking if we can concatenate two tokens, checkArgyrios Kyrtzidis
2013-01-02s/CPlusPlus0x/CPlusPlus11/gRichard Smith
2012-08-10Add missing cctype includes.Joerg Sonnenberger
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-03-06User-defined literals: reject string and character UDLs in all places where theRichard Smith
2012-01-17Remove unreachable code in Clang. (replace with llvm_unreachable where approp...David Blaikie
2011-09-19Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset.Argyrios Kyrtzidis
2011-08-11Raw string followup. Pass a couple StringRefs by value.Craig Topper
2011-08-11Add support for C++0x raw string literals.Craig Topper
2011-07-27Add support for C++0x unicode string and character literals, from Craig Topper!Douglas Gregor
2010-12-22Introduced raw_identifier token kind.Abramo Bagnara
2010-04-14make the token paste avoidance logic turn "..." into ".. ." instead of ". . ."Chris Lattner
2010-03-26fix a bug in paste avoidance which would cause us to accidentallyChris Lattner
2009-10-18Move clients to use IdentifierInfo::getNameStart() instead of getName()Daniel Dunbar
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-06-15PR4395: Don't detect token concatenation in C mode for Eli Friedman
2009-05-27Don't vary token concatenation based on the language options; this Eli Friedman
2009-04-21apply Eli's patch to fix PR4008, with a testcase. Thanks Eli!Chris Lattner
2009-03-18Fix -E mismatch; an identifier followed by a numeric constant does notDaniel Dunbar
2009-02-13factor token concatenation avoidance logic out of Chris Lattner