1. 3144749 In StringLiteralParser::init, make sure we emit an error when by Argyrios Kyrtzidis · 12 years ago
  2. 07a0758 In StringLiteralParser::init(), fail gracefully if the string is by Argyrios Kyrtzidis · 12 years ago
  3. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 13 years ago
  4. 26b75c0 Improve diagnostics for UCNs referring to control characters and members of the by Richard Smith · 13 years ago
  5. 49d5174 When checking the encoding of an 8-bit string literal, don't just check the by Richard Smith · 13 years ago
  6. b453ad3 Add support for cooked forms of user-defined-integer-literal and by Richard Smith · 13 years ago
  7. dd66be7 User-defined literal support for character literals. by Richard Smith · 13 years ago
  8. 5cc2c6e Lexing support for user-defined literals. Currently these lex as the same token by Richard Smith · 13 years ago
  9. 9135930 Implement warning for non-wide string literals with an unexpected encoding. Downgrade error for non-wide character literals with an unexpected encoding to a warning for compatibility with gcc and older versions of clang. <rdar://problem/10837678>. by Eli Friedman · 13 years ago
  10. 66b0eba Fixing hex floating literal support so that it handles 0x.2p2 properly. by Aaron Ballman · 13 years ago
  11. b534a9e Hex literals without a significand no longer crash the lexer. Fixes bug 7910 by Aaron Ballman · 13 years ago
  12. f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 13 years ago
  13. 5393e21 stop claiming unicode escape sequences are too long in strings, because they never are by Seth Cantrell · 13 years ago
  14. be77352 Improves support for Unicode in character literals by Seth Cantrell · 13 years ago
  15. 9b483df Fix a regression in wide character codegen. See PR11369. by Nico Weber · 13 years ago
  16. 22508f4 Fix one last place where we weren't writing into a string literal consistently. by Eli Friedman · 13 years ago
  17. caf1f26 Use native endianness for writing out character escapes to the result buffer for string literal parsing. No functional change on little-endian architectures; should fix test failures on PPC. by Eli Friedman · 13 years ago
  18. f74a458 Perform proper conversion for strings encoded in the source file as UTF-8. (For now, we are assuming the source character set is always UTF-8; this can be easily extended if necessary.) by Eli Friedman · 13 years ago
  19. 4671730 We do parse hexfloats in C++11; make it actually work. by Douglas Gregor · 13 years ago
  20. 17c8c84 When parsing a character literal, extract the characters from the by Douglas Gregor · 13 years ago
  21. d6471f7 Rename Diagnostic to DiagnosticsEngine as per issue 5397 by David Blaikie · 13 years ago
  22. 9fe8c74 Fix missing includes for llvm_unreachable by David Blaikie · 13 years ago
  23. b219cfc Switch assert(0/false) llvm_unreachable. by David Blaikie · 13 years ago
  24. 62ec1f2 Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear that this flag must be used only for Microsoft extensions and not emulation; to avoid confusion with the new LangOptions::MicrosoftMode flag. by Francois Pichet · 13 years ago
  25. 1155c42 Allow C99 hexfloats in C++0x mode. This change resolves the standards by Douglas Gregor · 13 years ago
  26. 0473cd5 Warn about and truncate UCNs that are too big for their character literal type. by Craig Topper · 13 years ago
  27. ddddd48 De-Unicode-ify. by NAKAMURA Takumi · 13 years ago
  28. 03720fc Raw string followup. Pass a couple StringRefs by value. by Craig Topper · 13 years ago
  29. 2fa4e86 Add support for C++0x raw string literals. by Craig Topper · 13 years ago
  30. 1661d71 Fix comment (test commit) by Craig Topper · 13 years ago
  31. 5cee119 Add support for C++0x unicode string and character literals, from Craig Topper! by Douglas Gregor · 13 years ago
  32. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  33. 403de3f Fix a nasty bug where inside StringLiteralParser: by Argyrios Kyrtzidis · 13 years ago
  34. fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 13 years ago
  35. d062b60 Microsoft integer suffix changes: i64 is like LL i32 is like L by Francois Pichet · 14 years ago
  36. 23ef69d Fix diagnostic for reporting bad escape sequence. Patch by Paul Curtis! by Ted Kremenek · 14 years ago
  37. b060727 move getSpelling from Preprocessor to Lexer, which it is more conceptually related to. by Chris Lattner · 14 years ago
  38. 0833dd0 propagate preprocessor out of StringLiteralParser. It is now by Chris Lattner · 14 years ago
  39. a95880d push the preprocessor out of EncodeUCNEscape by Chris Lattner · 14 years ago
  40. 7ef5c27 move AdvanceToTokenCharacter and getLocForEndOfToken from by Chris Lattner · 14 years ago
  41. 872a45e add a static version of PP::AdvanceToTokenCharacter. by Chris Lattner · 14 years ago
  42. 6c66f07 push use of Preprocessor out farther. by Chris Lattner · 14 years ago
  43. ca1475e push use of Preprocessor out of getOffsetOfStringByte by Chris Lattner · 14 years ago
  44. 48cf982 add a static form of the efficient PP::getSpelling method. by Chris Lattner · 14 years ago
  45. 91f54ce refactor the interface to StringLiteralParser::getOffsetOfStringByte, by Chris Lattner · 14 years ago
  46. c637415 allow I128 suffixes in msextensions mode just like i128 suffixes, patch by Chris Lattner · 14 years ago
  47. 59705ae Add support for UCNs for character literals by Nico Weber · 14 years ago
  48. a0f15b0 Add support for 4-byte UCNs like \U12345678. Warn about UCNs in c90 mode. by Nico Weber · 14 years ago
  49. 0b6542c Prevent warning when built with assert off. by Fariborz Jahanian · 14 years ago
  50. 56bedef Some support for unicode string constants in wide strings. radar 8360841. by Fariborz Jahanian · 14 years ago
  51. 6cf7502 Revert my user-defined literal commits - r1124{58,60,67} pending by Sean Hunt · 14 years ago
  52. 0016d51 Implement C++0x user-defined string literals. by Sean Hunt · 14 years ago
  53. 476d8b8 Random temporary string cleanup. by Benjamin Kramer · 14 years ago
  54. 427c492 Complain when string literals are too long for the active language by Douglas Gregor · 14 years ago
  55. 37dd3ec Remove a dead argument to ProcessUCNEscape. by Chris Lattner · 14 years ago
  56. 64a8034 Fix a miscompile of wchar pascal strings. (radar 8020384) by Fariborz Jahanian · 14 years ago
  57. b90f4b3 Tell the string literal parser when it's not permitted to emit by Douglas Gregor · 14 years ago
  58. 1c6c64b emit warn_char_constant_too_large at most once per literal, fixing PR6852 by Chris Lattner · 14 years ago
  59. 50f6af7 Introduce optional "Invalid" parameters to routines that invoke the by Douglas Gregor · 15 years ago
  60. a8be02b ui64, etc. are valid VS suffixes. Fixes radar 7562363. by Fariborz Jahanian · 15 years ago
  61. 8c72340 Do not parse hexadecimal floating point literals in C++0x mode because they are by Sean Hunt · 15 years ago
  62. 94c939d Diagnose out-of-bounds floating-point constants. Fixes rdar://problem/6974641 by John McCall · 15 years ago
  63. b7e996e Eliminate a completely unnecessary buffer copy when parsing float literals. by John McCall · 15 years ago
  64. 6e8c7ac cleanup parsing of MS integer suffixes a little. this fixes PR5616 by Nuno Lopes · 15 years ago
  65. b79fe2d This fixes support for complex literals, reworked to avoid a goto, and by Mike Stump · 15 years ago
  66. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  67. e9f195f Update lexer to work with the new APFloat string parsing. by Erick Tryzelaar · 15 years ago
  68. 930b71a CharLiteralParser::IsMultiChar was sometimes uninitialized. by Daniel Dunbar · 15 years ago
  69. 1a75ee2 Fix the build by Alisdair Meredith · 15 years ago
  70. 3c54801 PR4353: Add support for \E as a character escape. by Eli Friedman · 15 years ago
  71. 15b9176 Move CharIsSigned from TargetInfo to LangOptions. by Eli Friedman · 15 years ago
  72. 2a1c363 PR4283: Don't truncate multibyte character constants in the preprocessor. by Eli Friedman · 15 years ago
  73. e3ad881 Implement -Wfour-char-constants, which is an extension, not an extwarn, by Chris Lattner · 15 years ago
  74. b77f41e implement -Wmultichar by Chris Lattner · 15 years ago
  75. f01fdff Get rid of some useless uses of NoExtensions. The philosophy here is by Eli Friedman · 15 years ago
  76. 4bc11af Use an APInt of target int size to detect overflow while parsing multichars. by Sanjiv Gupta · 15 years ago
  77. f87b3df temporarily revert r69046 by Chris Lattner · 15 years ago
  78. 0fab49f Literal value calculation isn't likely to overflow on targets having int as 32 or less. Fixing the assert as it otherwise triggers for PIC16 which as i16 as int. by Sanjiv Gupta · 15 years ago
  79. 4e93b34 ProcessUCNEscape(): Incorportate some feedback from Chris. by Steve Naroff · 15 years ago
  80. 57d7dde Fix pascal string support; testcase from mailing list message. by Eli Friedman · 15 years ago
  81. 8a5c0cd Incorporate feedback from Eli. by Steve Naroff · 15 years ago
  82. 0e3e3eb Implement UCN support for C string literals (C99 6.4.3) and add some very basic tests. Chris Goller has graciously offered to write some test to help validate UCN support. by Steve Naroff · 15 years ago
  83. dbb1ecc fix some sema problems with wide strings and hook up basic codegen for them. by Chris Lattner · 16 years ago
  84. 719e615 Next step toward making string diagnostics correct: handle by Chris Lattner · 16 years ago
  85. 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 16 years ago
  86. 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 16 years ago
  87. bbee00b minor cleanups to StringLiteralParser: no need to pass target info by Chris Lattner · 16 years ago
  88. 4984212 Fix a weird inconsistency with hex floats. Previously the lexer by Chris Lattner · 16 years ago
  89. ac92d82 remove the NumericLiteralParser::Diag helper method, inlining it into by Chris Lattner · 16 years ago
  90. 204b2fe Remove the last of the old-style Preprocessor::Diag methods. by Chris Lattner · 16 years ago
  91. a179be3 Speed up NumericLiteralParser::GetIntegerValue. by Daniel Dunbar · 16 years ago
  92. d70cb64 Simplify overflow-on-add check in NumericLiteralParser::GetIntegerValue. by Daniel Dunbar · 16 years ago
  93. c29bbde Document assumptions that NumericLiteralParser makes with an assertion. by Chris Lattner · 16 years ago
  94. 4411f46 Fix the root cause of PR2750 instead of the side effect. by Chris Lattner · 16 years ago
  95. 6f7adbd Fix for PR2750; don't check for an 'e' in the trash after the token. by Eli Friedman · 16 years ago
  96. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  97. 6ea6238 In c89 mode accept hex fp constants as an extension: by Chris Lattner · 16 years ago
  98. 413d355 Fix a bug reported by Kelly Wilson, where we incorrectly by Chris Lattner · 16 years ago
  99. 368328c refactor some code out into a new method. by Chris Lattner · 16 years ago
  100. 70f66ab for exponent-related errors, emit the diagnostic on the 'e' or 'p'. by Chris Lattner · 16 years ago