aboutsummaryrefslogtreecommitdiff
path: root/lib/Lex
AgeCommit message (Expand)Author
2013-01-30Move UTF conversion routines from clang/lib/Basic to llvm/lib/SupportDmitri Gribenko
2013-01-30Don't warn about Unicode characters in -E mode.Jordan Rose
2013-01-29[Preprocessor] When checking if we can concatenate two tokens, checkArgyrios Kyrtzidis
2013-01-28PR15067 (again): Don't warn about UCNs in C90 if we're raw-lexing.Jordan Rose
2013-01-27PR15067: Don't assert when a UCN appears in a C90 file.Jordan Rose
2013-01-26<limits.h> includes <linux/limits.h> on Linux, no need to special-case itDmitri Gribenko
2013-01-26Since we're stuck with realpath for the header <-> module mapping,Douglas Gregor
2013-01-25Lexer.cpp: Fix a warning with ptrdiff_t on i686. [-Wsign-compare]NAKAMURA Takumi
2013-01-25[Lex] Remove DirectoryLookup.UserSpecified, which is unused.Daniel Dunbar
2013-01-25Clarify comment: "diagnose" is better than "warn" when emitting an error.Jordan Rose
2013-01-24Add a fixit for \U1234 -> \u1234.Jordan Rose
2013-01-24As an extension, treat Unicode whitespace characters as whitespace.Jordan Rose
2013-01-24Handle universal character names and Unicode characters outside of literals.Jordan Rose
2013-01-24Unify diagnostics for \x, \u, and \U without any following hex digits.Jordan Rose
2013-01-23[PCH] Temporarily disable the "ambiguous macro" warning that is currently bog...Argyrios Kyrtzidis
2013-01-22Fix compilation on Linux, which defines PATH_MAX in a weird place,Douglas Gregor
2013-01-19[PCH/Modules] Revert r172843, it caused a module to fail building.Argyrios Kyrtzidis
2013-01-18Adopt llvm::hexDigitValue.Jordan Rose
2013-01-18[PCH/Modules] Re-apply r172620 and r172629, now with 100% less infinite loops!Argyrios Kyrtzidis
2013-01-18[ubsan] Add support for -fsanitize-blacklistWill Dietz
2013-01-18Revert Clang r172620 and r172629, which caused a hang when buildingDouglas Gregor
2013-01-17Add some semantic checks for OpenCL. Variadic macros, VLAs and bitfields are ...Joey Gouly
2013-01-16Remove unnecessary initialization i Added in r172668.David Blaikie
2013-01-16Fix -Wreorder warning.David Blaikie
2013-01-16Move initialization of ParsingIfOrElifDirective down next to the macroEric Christopher
2013-01-16No longer crashing with an assert when __has_include or __has_include_next is...Aaron Ballman
2013-01-16[preprocessor] Call the MacroUndefined callback even when the macro was not d...Argyrios Kyrtzidis
2013-01-16[PCH/Modules] Change how macro [re]definitions are de/serialized.Argyrios Kyrtzidis
2013-01-15Typo correction; no functional change.Aaron Ballman
2013-01-14Infer "link" lines for top-level frameworks. Essentially, a frameworkDouglas Gregor
2013-01-14Implement parsing, AST, (de-)serialization, and placeholder globalDouglas Gregor
2013-01-14Constify argument of Preprocessor::getMacroInfoHistory and propagate toDmitri Gribenko
2013-01-12Remove useless 'llvm::' qualifier from names like StringRef and others that areDmitri Gribenko
2013-01-10Rework the realpath nonsense for framework lookups to deal moreDouglas Gregor
2013-01-09[PreprocessingRecord] A macro expansion can be reported out-of-order in cases...Argyrios Kyrtzidis
2013-01-09Make __has_include a bit more resilient in the presence of macros. <rdar://p...Eli Friedman
2013-01-07Pull the bulk of Lexer::MeasureTokenLength() out into a new function,Argyrios Kyrtzidis
2013-01-04realpath'ify the mapping from header includes to module imports.Douglas Gregor
2013-01-04Add __has_feature support to detect if clang supports the explicit "atomic" k...Ted Kremenek
2013-01-04Add the module name to the 'incomplete umbrella header' warning.Douglas Gregor
2013-01-02s/CPlusPlus0x/CPlusPlus11/gRichard Smith
2012-12-22[libclang] Fix crash when code-completing a macro invocation thatArgyrios Kyrtzidis
2012-12-21Remove duplicate includes.Roman Divacky
2012-12-21[libclang] Follow-up to r170824, provide the correct number of arguments forArgyrios Kyrtzidis
2012-12-21[libclang] Make sure we can code-complete inside a macro argument even thoughArgyrios Kyrtzidis
2012-12-20Revert r170500. It over-zealously converted *ALL* things named Attributes, wh...Bill Wendling
2012-12-20Add __has_feature(memory_sanitizer).Evgeniy Stepanov
2012-12-19[preprocessor] When "merging" macro argument tokens into one SLocEntry chunk,Argyrios Kyrtzidis
2012-12-19Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling
2012-12-17tsan: add __has_feature(thread_sanitizer)Dmitry Vyukov