aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic/TokenKinds.def
AgeCommit message (Expand)Author
2009-09-17Initial implementation of a code-completion interface in Clang. InDouglas Gregor
2009-06-30Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions.Chris Lattner
2009-06-25OpenCL 1.0 Support: support "bool, true, false" tokens when compiling for OpenCLNate Begeman
2009-06-08Misc minor fixes for clang for the Windows target.Eli Friedman
2009-05-27restrict is not a keyword in gnu89 mode. Change TokenKinds.def to Eli Friedman
2009-04-28Simplify the scheme used for keywords, and change the classification Eli Friedman
2009-04-08Add initial support for -imacros. Right now it has the same semantics asChris Lattner
2009-02-18rip out __builtin_overloadChris Lattner
2009-01-06rename tok::annot_qualtypename -> tok::annot_typename, which is bothChris Lattner
2009-01-05PODness and Type TraitsSebastian Redl
2008-12-25Add parser support for __forceinline, __w64, __ptr64.Steve Naroff
2008-12-25Add parser support for __cdecl, __stdcall, and __fastcall.Steve Naroff
2008-12-24Add explicit "fuzzy" parse support for Microsoft declspec.Steve Naroff
2008-12-18Ultrasimplistic sketch for the parsing of C++ template-ids. This won'tDouglas Gregor
2008-11-08Introduce annotation tokens, a special kind of token, created and used only b...Argyrios Kyrtzidis
2008-11-06Add the remaining C++0x keywordsDouglas Gregor
2008-03-05Remove the first layer of support for "portability" warnings. This is Chris Lattner
2008-02-15Fix PR2041: restrict is not a keyword in c90.Chris Lattner
2008-02-11Move Microsoft __declspec hack from the parser to the preprocessor. Since we ...Steve Naroff
2008-02-07- Add support for fuzzy parsing line-oriented __asm's (yuck).Steve Naroff
2008-02-07Minor cleanup from yesterday's -fms-extension commit. Move __int* MS keywords...Steve Naroff
2008-02-07these aren't tokens.Chris Lattner
2008-02-07Implement -fms-extensions. This allows us to fuzzy parse non-standard MS cons...Steve Naroff
2008-01-17Implement basic overload support via a new builtin, __builtin_overload.Nate Begeman
2008-01-14_asm is another valid alias for asm.Anders Carlsson
2007-12-29remove attributions from .def files.Chris Lattner
2007-12-18Add __private_extern__ keyword and recognize it. Added a FIXME to indicate th...Steve Naroff
2007-11-15Break out bool/true/false support into a LangOptionNate Begeman
2007-10-07Remove the PPID bitfield from IdentifierInfo, shrinking it by a word Chris Lattner
2007-09-01Patch to parse @implementation prologue, method definitions,Fariborz Jahanian
2007-08-22Fix a misleading comment...Steve Naroff
2007-08-22Add support for parsing method prototypes (and other stuff required by @inter...Steve Naroff
2007-08-21Implement parsing for objc instance variables.Steve Naroff
2007-07-16Doug Gregor pointed out that _Complex actually isn't C++ at all.Chris Lattner
2007-07-16Add support for C++'0x keywords, patch by Doug GregorChris Lattner
2007-07-11Stage two of getting CFE top correct.Reid Spencer