aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Lex/TokenConcatenation.cpp
AgeCommit message (Expand)AuthorFilesLines
2020-04-21C++2a -> C++20 in some identifiers; NFC.Aaron Ballman1-2/+2
2019-04-11[C++20] Implement context-sensitive header-name lexing and pp-import parsing ...Richard Smith1-0/+5
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-09-27[Lex] TokenConcatenation now takes const PreprocessorKristof Umann1-2/+2
2017-12-04Now that C++17 is official (https://www.iso.org/standard/68564.html), start c...Aaron Ballman1-2/+2
2017-12-01[c++2a] P0515R3: lexer support for new <=> token.Richard Smith1-0/+6
2016-10-26[PP] Replace some index based for loops with range based onesErik Verbruggen1-1/+1
2015-06-18[clang] Refactoring of conditions so they use isOneOf() instead of multiple i...Daniel Marjamaki1-10/+10
2014-11-08[c++1z] Support for u8 character literals.Richard Smith1-1/+7
2014-09-10Avoid a couple of assertions when preprocessing with modulesBen Langmuir1-2/+10
2014-01-30Revert "Fix assertion failures on annot_* tokens in clang -E"Ben Langmuir1-6/+3
2014-01-30Fix assertion failures on annot_* tokens in clang -EBen Langmuir1-3/+6
2013-02-08Simplify logic for avoiding concatenation after numeric constants.Jordan Rose1-6/+5
2013-01-29[Preprocessor] When checking if we can concatenate two tokens, checkArgyrios Kyrtzidis1-3/+4
2013-01-02s/CPlusPlus0x/CPlusPlus11/gRichard Smith1-10/+10
2012-08-10Add missing cctype includes.Joerg Sonnenberger1-0/+1
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie1-7/+7
2012-03-06User-defined literals: reject string and character UDLs in all places where theRichard Smith1-1/+38
2012-01-17Remove unreachable code in Clang. (replace with llvm_unreachable where approp...David Blaikie1-2/+0
2011-09-19Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset.Argyrios Kyrtzidis1-1/+1
2011-08-11Raw string followup. Pass a couple StringRefs by value.Craig Topper1-1/+1
2011-08-11Add support for C++0x raw string literals.Craig Topper1-17/+31
2011-07-27Add support for C++0x unicode string and character literals, from Craig Topper!Douglas Gregor1-36/+28
2010-12-22Introduced raw_identifier token kind.Abramo Bagnara1-1/+9
2010-04-14make the token paste avoidance logic turn "..." into ".. ." instead of ". . ."Chris Lattner1-2/+4
2010-03-26fix a bug in paste avoidance which would cause us to accidentallyChris Lattner1-1/+1
2009-10-18Move clients to use IdentifierInfo::getNameStart() instead of getName()Daniel Dunbar1-1/+1
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump1-21/+21
2009-06-15PR4395: Don't detect token concatenation in C mode for Eli Friedman1-3/+5
2009-05-27Don't vary token concatenation based on the language options; this Eli Friedman1-6/+3
2009-04-21apply Eli's patch to fix PR4008, with a testcase. Thanks Eli!Chris Lattner1-0/+8
2009-03-18Fix -E mismatch; an identifier followed by a numeric constant does notDaniel Dunbar1-22/+31
2009-02-13factor token concatenation avoidance logic out of Chris Lattner1-0/+205