1. 62ba9f6 Put a reference of the ASTReader in the ASTUnit. by Argyrios Kyrtzidis · 13 years ago
  2. 87ec9c2 [libclang] For a class extension, give it a unique USR but for any property or ivar by Argyrios Kyrtzidis · 13 years ago
  3. 177dce7 Implement C++11 'constexpr calls must return constant expressions' rule, and by Richard Smith · 13 years ago
  4. cc7a648 Enable function call and some overload resolution with parameters of aggregate class type and initializer list arguments. by Sebastian Redl · 13 years ago
  5. 885011b Correct test for additional comment line. by Eli Friedman · 13 years ago
  6. 55a7ba0 Mark test as requiring x86 backend. by Eli Friedman · 13 years ago
  7. 8bb6e9e Don't depend on system includes in test. by Eli Friedman · 13 years ago
  8. d9f5b33 Make test work with ARM C++ ABI. by Eli Friedman · 13 years ago
  9. f12e1b9 Tests for UTF-8 encoding in strings in source code. Patch by Seth Cantrell. by Eli Friedman · 13 years ago
  10. 64f45a2 Fix the representation of wide strings in the AST and IR so that it uses the native representation of integers for the elements. This fixes a bunch of nastiness involving by Eli Friedman · 13 years ago
  11. 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
  12. 436ecd9 Move ConvertUTF8toUTF32 out of #if 0, in preparation for a patch which needs it. by Eli Friedman · 13 years ago
  13. f358c8a Add LinkAllPasses to clang by Tobias Grosser · 13 years ago
  14. 172b221 Add __has_feature(cxx_raw_string_literals) and by Douglas Gregor · 13 years ago
  15. f695a69 Add __has_feature(cxx_defaulted_functions) for querying "defaulted by Douglas Gregor · 13 years ago
  16. 76852c2 Rework the AST for the initializer of a delegating constructor, so by Douglas Gregor · 13 years ago
  17. d8c4551 Adds IRGen support for captured rvalue references in blocks. by Fariborz Jahanian · 13 years ago
  18. c45061b Some minor comment changes in constant-folding comparisons. by Eli Friedman · 13 years ago
  19. ffbda40 Don't try to fold comparisons between the address of an object and an arbitrary integer constant. Fixes regression from r143334. by Eli Friedman · 13 years ago
  20. 51a7d5d [libclang] Tweak internals of CXSourceLocation to allow an alternate implementation if the lowest bit of ptr_data[0] is not 0. This by Ted Kremenek · 13 years ago
  21. 3ddef06 [libclang] Move implementation of functions for manipulation CXSourceLocations and CXSourceRanges into a separate file. by Ted Kremenek · 13 years ago
  22. 1edabbc [libclang] Add CXDiagnosticImpl to represent a super class for the implementation backing a CXDiagnostic. This allows CXStoredDiagnostic by Ted Kremenek · 13 years ago
  23. 2fe17fc Revert r143342. Caching of code-completion results was intentionally placed in "reparse" by Argyrios Kyrtzidis · 13 years ago
  24. 7a420df Add missing lvalue-to-rvalue conversion. by Eli Friedman · 13 years ago
  25. 6a7c94a Refactoring and test for r143360. Support for array rvalue to pointer decay is by Richard Smith · 13 years ago
  26. aa97b53 Temporary fix for assert while evaluating array-to-pointer decay on array by Richard Smith · 13 years ago
  27. 56892c1 Improve text of a diagnostic. by Fariborz Jahanian · 13 years ago
  28. eea6480 In x86_64, when calling an Objective-C method that returns a _Complex long double, make sure to use the objc_msgSend_fp2ret function which ensures that the return value will be {0, 0} if the receiver is nil. by Anders Carlsson · 13 years ago
  29. f453cb9 Add possibility to specify an include location for createFileIDForMemBuffer(). by Axel Naumann · 13 years ago
  30. 236e0b6 Simplify the set of directories we look for on multiarch systems. by Chandler Carruth · 13 years ago
  31. ef0faea Add "just one more" include path to the monstrosity that is our header by Chandler Carruth · 13 years ago
  32. deb73f8 Fix part of PR11223 and probably a few dups as well. This teaches the by Chandler Carruth · 13 years ago
  33. d1cf3ff Fix the source range for ObjCInterfaces that are forward decls. by Argyrios Kyrtzidis · 13 years ago
  34. 0922949 Move caching of code-completion results from ASTUnit::Reparse to ASTUnit::CodeComplete, by Argyrios Kyrtzidis · 13 years ago
  35. ef23b60 [PCH] Now that we store the location of a decl outside its record by Argyrios Kyrtzidis · 13 years ago
  36. 9d128d0 [PCH] For ASTReader's FileDeclIDs also associate the Module that the by Argyrios Kyrtzidis · 13 years ago
  37. 7186991 Introduce SourceManager::isLocalFileID/isLoadedFileID functions. by Argyrios Kyrtzidis · 13 years ago
  38. 332cb9b Have the ASTUnit associate the local declarations that get parsed with the file by Argyrios Kyrtzidis · 13 years ago
  39. e709846 [libclang] Rename VisitIncludedPreprocessingEntries -> VisitIncludedEntities by Argyrios Kyrtzidis · 13 years ago
  40. bd552ef C++11 generalized constant expression handling: evaluation support for by Richard Smith · 13 years ago
  41. 9e36b53 C++11 generalized constant expressions: evaluate equality comparisons between by Richard Smith · 13 years ago
  42. ba5d10b cindex.py: Remove more ternary operator + whitespace fixes by Tobias Grosser · 13 years ago
  43. 625b807 C++11 generalized constant expressions: support pointer comparisons where the by Richard Smith · 13 years ago
  44. aaf2f36 Turn on the new .file directive when appropriate, instead of turning it off. by Nick Lewycky · 13 years ago
  45. 8198288 clang.py: Remove use of ternary operators by Tobias Grosser · 13 years ago
  46. 58ba8c9 cindex.py: Allow to create a cursor from file/row/column by Tobias Grosser · 13 years ago
  47. a9ea5df cindex.py: Add File.create_from_name() by Tobias Grosser · 13 years ago
  48. 7993e8a Fix assert on constant expression evaluation of floating point increment. by Richard Smith · 13 years ago
  49. 22a7dfe Add support for lazily linking bitcode files (using a new by Peter Collingbourne · 13 years ago
  50. 80b32b8 Add support for sse4a and enable it for amdfam10 cpu. by Roman Divacky · 13 years ago
  51. 5eca37c Fixed CXX struct and class initialization printing to support 'move' by Jim Goodnow II · 13 years ago
  52. 01c770d Add support for amdfam10 cpu. by Roman Divacky · 13 years ago
  53. 1a1764b Stop disabling integrated assembler with -static. <rdar://problem/10175391> by Bob Wilson · 13 years ago
  54. 342f1f8 Don't crash if a GCC binary conditional is used in a constant expression on an by Richard Smith · 13 years ago
  55. b78c0b6 constexpr evaluation: allow lvalue-to-rvalue conversion on any literal type, not by Richard Smith · 13 years ago
  56. 47a1eed constexpr function substitution: by Richard Smith · 13 years ago
  57. 0216df8 Fixed FriendDecl source locations. by Abramo Bagnara · 13 years ago
  58. e7de9b4 Use LIBCLANG_NOTHREADS instead of CINDEXTEST_NOTHREADS inside libclang, by Argyrios Kyrtzidis · 13 years ago
  59. 51f4708 Rename Expr::Evaluate to Expr::EvaluateAsRValue to make it clear that it will by Richard Smith · 13 years ago
  60. 7800212 Start work on SerializedDiagnosticPrinter, a new DiagnosticConsumer that serializes out the diagnostics for a given translation unit to a bit code file. This is a WIP. by Ted Kremenek · 13 years ago
  61. fc2eff5 objc-arc: desugar certain type and improve on diagnostic for by Fariborz Jahanian · 13 years ago
  62. 839046a Add test missed from r143234. by Richard Smith · 13 years ago
  63. fab8d5b [PCH] Sort the file decls by file offset not raw source location. by Argyrios Kyrtzidis · 13 years ago
  64. 19645d2 [PCH] In ASTWriter::associateDeclWithFile don't bother finding the file loc by Argyrios Kyrtzidis · 13 years ago
  65. ee591a9 Fix assertion in constant expression evaluation. The LHS of a floating-point by Richard Smith · 13 years ago
  66. 50af19c Move -Wc++11-compat out of -Wall. It causes trouble for clients that by Douglas Gregor · 13 years ago
  67. 5aa6dea Give __STDC_VERSION__ the value 201001L when we're in C1x mode. The by Douglas Gregor · 13 years ago
  68. dfca64d [libclang] Introduce use of CINDEXTEST_FAILONERROR environment variable which, if set, by Argyrios Kyrtzidis · 13 years ago
  69. 8c4b47e [libclang] Check for environment variable CINDEXTEST_NOTHREADS in clang_reparseTranslationUnit. by Argyrios Kyrtzidis · 13 years ago
  70. 407ef9a Make -error-on-deserialized-decl work correctly by correctly delegating to by Argyrios Kyrtzidis · 13 years ago
  71. 6ee5492 [ARC] Do not transfer ARC ownership if the cast is going to result in r-value, by Argyrios Kyrtzidis · 13 years ago
  72. 9a8cbc7 Add an alias option for -error-on-deserialized-decl with joined '='. by Argyrios Kyrtzidis · 13 years ago
  73. 10f3df5 [PCH] Keep track of file-level declarations that are contained by files. by Argyrios Kyrtzidis · 13 years ago
  74. d0dccea Initial support for C++11 constexpr function invocation substitution. Using by Richard Smith · 13 years ago
  75. ef8857d In case of template specialization, do not try to delay emitting debug info for concrete type in -flimit-debug-info mode. This fixes some of the failures from bs15503.exp tests in gdb testsuite. by Devang Patel · 13 years ago
  76. bcb5452 Fix this on the bots and make the test more complete by enabling optimizations. by Rafael Espindola · 13 years ago
  77. cc4889f Fix PR9614 for functions with the always_inline attribute. Try to keep by Rafael Espindola · 13 years ago
  78. 6d09f01 objective-c arc: type-casting of an objc pointer to by Fariborz Jahanian · 13 years ago
  79. 26bae20 Deleted functions were in Clang 2.9, defaulted functions in 3.0. Fixses PR11252. by Douglas Gregor · 13 years ago
  80. 4a037c7 [analyzer] ObjC message sends to nil receivers that return structs are now okay (compiler zeroes out the data). Fixes <rdar://problem/9151319>. by Ted Kremenek · 13 years ago
  81. 6f3887e It turns out that the Objective-C message lookup functions can throw exceptions after all... by David Chisnall · 13 years ago
  82. c49bd11 Reinstate r142844 (reverted in r142872) now that lvalue-to-rvalue conversions by Richard Smith · 13 years ago
  83. 854625f Use const_cast to make it obvious that it's just removing constness (and silence warnings). by Benjamin Kramer · 13 years ago
  84. aa9807a Reflow code. No intended functionality change. by Benjamin Kramer · 13 years ago
  85. 9c273ff Fix test for LLVM change r143186. by Nick Lewycky · 13 years ago
  86. 9c129f8 Add (hopefully) the last missing lvalue-to-rvalue conversion. Add an assertion by Richard Smith · 13 years ago
  87. ac51650 Be sure to build a dependent expression when we see by John McCall · 13 years ago
  88. 55733de Fix for PR9751 to change the behavior of -Wformat warnings. If the format by Richard Trieu · 13 years ago
  89. 61ffd09 Add missing lvalue-to-rvalue conversion to vector splat casts. by Richard Smith · 13 years ago
  90. e3271d4 Remove the Alpha backend. by Dan Gohman · 13 years ago
  91. 4f87062 Fix some cases where a CK_IntegralCast was being used to convert an lvalue to an by Richard Smith · 13 years ago
  92. 2ce634d Mark these tests as requiring use of the shell. by Ted Kremenek · 13 years ago
  93. 9c1ba40 objc: fix an ir-gen crash caused by recent by Fariborz Jahanian · 13 years ago
  94. e055f8a Add mutex for accessing ASTUnit's global OnDisk data. This may be an issue as libclang could be processing multiple ASTUnit's at once. by Ted Kremenek · 13 years ago
  95. c5096cb Annotate imprecise FP division with fpaccuracy metadata by Peter Collingbourne · 13 years ago
  96. 9d31fa7 [PCH] Pull the location out of the serialized declarations and put it in the array by Argyrios Kyrtzidis · 13 years ago
  97. 1872b31 Move ASTUnit's handling of temporary files and the preamble file into a lazily-created static DenseMap. This DenseMap is cleared (and the files erased) via an atexit routine in the case an ASTUnit is not destroyed. Fixes <rdar://problem/10293367>. by Ted Kremenek · 13 years ago
  98. bd0ddf8 [libclang] Add comments. by Argyrios Kyrtzidis · 13 years ago
  99. eee242f Make the loading of information attached to an IdentifierInfo from an by Douglas Gregor · 13 years ago
  100. 29e97cb Teach format string analysis that "%zu" means size_t. by Hans Wennborg · 13 years ago