1. 87e2cfc Actually keep track of the source locations at which particular module by Douglas Gregor · 12 years ago
  2. 830ea5b When an error occurs while building a module on demand, provide "While by Douglas Gregor · 12 years ago
  3. 7f2d480 Allow matchers to access the ASTContext. by Manuel Klimek · 12 years ago
  4. 683b70c Update to reflect the change of macro name in r168993. by Chandler Carruth · 12 years ago
  5. ecdc8d3 Fix the computation of highlight ranges so we produce something sane when by Eli Friedman · 12 years ago
  6. 7d04d3a Refactor to reduce duplication in handling of special member functions. No functionality change. by Richard Smith · 12 years ago
  7. e5965df Add a test case for the new cortex-a5 switch by Quentin Colombet · 12 years ago
  8. dcd42fb Use the new LLVM_LVALUE_FUNCTION to ban two getAs() calls on rvalues. by Jordan Rose · 12 years ago
  9. 7dff05b Fix unit tests for ModuleLoader change in r168961. by Douglas Gregor · 12 years ago
  10. 463d909 Keep track of modules that have failed to build. If we encounter an by Douglas Gregor · 12 years ago
  11. db748a3 Fix a small calling-convention bug for x86-32. PR14453. by Eli Friedman · 12 years ago
  12. 74632aa Add ARM cortex-a5 subtarget by Quentin Colombet · 12 years ago
  13. 9c196ac Remove out-of-date comment. by Richard Smith · 12 years ago
  14. 398b8e8 Revert commit revision r168953, to change the commit message, which was empty by Quentin Colombet · 12 years ago
  15. b3233f5 by Quentin Colombet · 12 years ago
  16. 4d1a6e4 This patch exposes to Clang users three more sanitizers are experimental features of ASan: by Alexey Samsonov · 12 years ago
  17. 2ec5f55 Make the test less sensitive to DWARF emission implementation details. by Eli Bendersky · 12 years ago
  18. 6716d94 Make sure that we put the rest of the sanitizer libraries on the link line by Eric Christopher · 12 years ago
  19. 1fadc0e Use newer command line option here. by Eric Christopher · 12 years ago
  20. 4f000c3 Remove duplicate test run lines. by Eric Christopher · 12 years ago
  21. b282920 Now that the underlying problem has been fixed, add r168411 back. by Rafael Espindola · 12 years ago
  22. 8b8a09e Merge function types in C. by Rafael Espindola · 12 years ago
  23. 96794f1 ASTTests/StmtPrinterTest/StmtPrinter.TestMSIntegerLiteral: Remove i128 stuff. Conditioning-out in macro argument was not accepted on MS cl.exe. by NAKAMURA Takumi · 12 years ago
  24. 3b16477 ASTTests/StmtPrinterTest/StmtPrinter.TestMSIntegerLiteral: Suppress i128 according to r168856, for now. by NAKAMURA Takumi · 12 years ago
  25. 53c61c5 [-cxx-abi microsoft] Also spill the argument-back-references context when mangling templates by Timur Iskhodzhanov · 12 years ago
  26. 8426890 Reject uses of __int128 on platforms that don't support it. Also move the ugly by Richard Smith · 12 years ago
  27. bba91b8 Fix sentence construction-o. by Nico Weber · 12 years ago
  28. a70779f Fix crash-on-invalid. <rdar://problem/12765391>. by Eli Friedman · 12 years ago
  29. afb4918 The declaration of a special member can require overload resolution to be by Richard Smith · 12 years ago
  30. a431770 Change SValBuilder::getConditionType() to return BoolTy in C++. Fixes <rdar://problem/12772656>. by Ted Kremenek · 12 years ago
  31. 9c04666 Correctly handle IntegralToBool casts in C++ in the static analyzer. Fixes <rdar://problem/12759044>. by Ted Kremenek · 12 years ago
  32. 586a061 [driver] -mkernel implies -mstrict-align; don't add the redundant option. by Chad Rosier · 12 years ago
  33. 52b501c Implement C++11 [dcl.attr.grammar] p4: If an attribute-specifier-seq appertains to a friend declaration, that declaration shall be a definition. by Michael Han · 12 years ago
  34. b15c898 objective-C blocks: Make sure that identical logic is used by Fariborz Jahanian · 12 years ago
  35. a70c3f8 Per C++11 [except.spec]p2, rvalue references are not permitted in exception specifications. by Richard Smith · 12 years ago
  36. 21173b1 PR14388: An array or function type in an exception specification should be by Richard Smith · 12 years ago
  37. 060f34d ABI: comments from Eli on r168820. by Manman Ren · 12 years ago
  38. f51c61c ABI: modify CreateCoercedLoad and CreateCoercedStore to not use load or store of by Manman Ren · 12 years ago
  39. f641166 PR13098: If we're instantiating an overloaded binary operator and we could by Richard Smith · 12 years ago
  40. 2cbdd7d [analyzer] scan-build: Don't forget to close our temp file for Clang's output. by Jordan Rose · 12 years ago
  41. 501be13 [analyzer] scan-build: Treat '.C' files as C++. by Jordan Rose · 12 years ago
  42. 3325b16 Refactor -fsanitize, -f*-sanitizer arguments parsing. Provide a more careful diagnostic for invalid sets of sanitizers by Alexey Samsonov · 12 years ago
  43. 11c9a6e [asan] Split AddressSanitizer into two passes (FunctionPass, ModulePass), Clang part. by Kostya Serebryany · 12 years ago
  44. 037dbda Remove obsolete comment missed by r162937 by Andy Gibbs · 12 years ago
  45. 30cddae Teach Lexer::getSpelling about raw string literals. Specifically, if a raw by Richard Smith · 12 years ago
  46. acf796b Store on the CXXRecordDecl whether the class has, or would have, a copy by Richard Smith · 12 years ago
  47. 3881866 Remove workaround in RegionStore in r168741 since it is handled more generally by r168757. by Ted Kremenek · 12 years ago
  48. 2a82ca2 Introduce ASTUnresolvedSet, an UnresolvedSet-like class, whose contents are by Argyrios Kyrtzidis · 12 years ago
  49. 9d29543 Don't return a pointer to an UnresolvedSetImpl in the CXXRecordDecl interface, by Argyrios Kyrtzidis · 12 years ago
  50. b8abff6 C++ core issue 1344, PR10618: promote "addition of default argument makes this by Richard Smith · 12 years ago
  51. 1994e39 Fix another false positive due to a CXX temporary object appearing in a C initializer. by Ted Kremenek · 12 years ago
  52. 84c7519 objective-C arc: Underline the selector when issuing by Fariborz Jahanian · 12 years ago
  53. 831fb8d docs: [CMake] Add Xcode to the list of project formats CMake can generate. by NAKAMURA Takumi · 12 years ago
  54. 0dffb7b clang/www/get_started.html: s/cmake/CMake/ by NAKAMURA Takumi · 12 years ago
  55. bd8a11e Provide stop-gap solution to crash reported in PR 14436. by Ted Kremenek · 12 years ago
  56. 82c458e objective-C arc: load of a __weak object happens via call to by Fariborz Jahanian · 12 years ago
  57. 7aa7eb9 [libclang] Remove WorkingDir field from CIndexer, it has been rendered useless. by Argyrios Kyrtzidis · 12 years ago
  58. f88836d Move PrettyStackTraceParserEntry to ParseAST.cpp by Nico Weber · 12 years ago
  59. d1bac8d Allow an ASTConsumer to selectively skip function bodies while parsing. Patch by Richard Smith · 12 years ago
  60. d0adeb6 Simplify checking for whether we should implicitly declare special members and by Richard Smith · 12 years ago
  61. f8fc627 Remove an extra semicolon. by Chad Rosier · 12 years ago
  62. 9d8b5fc Fix examples. by Rafael Espindola · 12 years ago
  63. 17c874a Remove some dead code. CLANG_IS_PRODUCTION is now just a build flag and by Rafael Espindola · 12 years ago
  64. b854036 Add -fsanitize=integer for reporting suspicious integer behaviors. by Will Dietz · 12 years ago
  65. 5e7b43e Remove outdated FIXME; should have removed that in r160782 by Timur Iskhodzhanov · 12 years ago
  66. 93308b9 clang/test/lit.cfg: Disable dev-fd-fs on cygwin for now. by NAKAMURA Takumi · 12 years ago
  67. 55f6c33 Test for r168674. by Eli Friedman · 12 years ago
  68. 6902e41 Fix the definition of the vfork() builtin on Haiku. PR14378. by Eli Friedman · 12 years ago
  69. c9715fc This patch addresses an incompatibility relative to the 64-bit PowerPC ELF ABI. by Bill Schmidt · 12 years ago
  70. 3fa3c44 scan-build: Respect TMPDIR on all platforms, not just Darwin (PR14438). by Jordan Rose · 12 years ago
  71. 6e99f9f [analyzer] Fix test to work on non-LP64 systems. by Jordan Rose · 12 years ago
  72. ec351f1 Add a testcase that r168411 would break. by Rafael Espindola · 12 years ago
  73. 8272be5 Revert r168411 for now. by Rafael Espindola · 12 years ago
  74. 4b98b2b Duplicate some common owners between Clang and LLVM. by Richard Smith · 12 years ago
  75. f18dd8e Move Clang code owners list from llvm/ to cfe/. by Richard Smith · 12 years ago
  76. acf3612 Frontend: Create a virtual file for named pipe inputs. by Daniel Dunbar · 12 years ago
  77. 2e39713 Improve diagnostic on C++11 attribute specifiers that appear at wrong syntactic locations around class specifiers. by Michael Han · 12 years ago
  78. f582499 Add missing "break". Thanks to Craig for spotting it. by Eli Friedman · 12 years ago
  79. 9e4bafc check that always_inline attribute works with -fno-inline by Sebastian Pop · 12 years ago
  80. 7bd51ea [analyzer] SATestBuild.py: allow make builds to disable parallelization by Jordan Rose · 12 years ago
  81. dac6cd5 [analyzer] Fix a crash reported in PR 14400. by Anna Zaks · 12 years ago
  82. f419a85 MSPGCC renamed ISR vectors from vector_<address> to __isr_<number>. This patch makes Clang reflect this scheme. by Anton Korobeynikov · 12 years ago
  83. 79b7cc5 Fix PR14413 - incorrect mangling of anonymous namespaces with -cxx-abi microsoft by Timur Iskhodzhanov · 12 years ago
  84. 73ed67c PR14428: When instantiating a 'new' expression, if we had a non-dependent by Richard Smith · 12 years ago
  85. 8dbf697 Add r168519 back, but with a fix to also merge the used flag in variables. by Rafael Espindola · 12 years ago
  86. 1c80b52 Add a basic testcase for the "variable is not needed" warning and one that by Rafael Espindola · 12 years ago
  87. 1059653 Fix test case for linking with sanitizer opts added in r168428. by Alexey Samsonov · 12 years ago
  88. 6df81a9 Revert r168519, "Merge used flags so that we don't have to iterate on isUsed. With this change" by NAKAMURA Takumi · 12 years ago
  89. f9cb0be Make err_module_expected_semi consistent with all the other expected_semi diags. by Nico Weber · 12 years ago
  90. 63b6ebe Sema: Provide a valid source location when instantiating templates based on a CXXDefaultArgExpr. by Benjamin Kramer · 12 years ago
  91. 919b7e6 Merge used flags so that we don't have to iterate on isUsed. With this change by Rafael Espindola · 12 years ago
  92. 385e1d9 Remove redundant check. by Rafael Espindola · 12 years ago
  93. 4875bf2 Check that we don't warn on this testcase. This is basically a test that by Rafael Espindola · 12 years ago
  94. 8548908 PR14306: Move -fbounds-checking to -fsanitize=bounds. by Joey Gouly · 12 years ago
  95. 66b8a66 Reapply a subset of r167567 to clean up Darwin-specific code for invoking gcc. by Bob Wilson · 12 years ago
  96. 4d9f4e5 Make helpers static/anonymous. by Benjamin Kramer · 12 years ago
  97. 746619a Fix regression in r168477. Use canonical decl when looking for base class by Richard Smith · 12 years ago
  98. f62c690 Fix CXXRecordDecl::forallBases to not look through bases which are dependent by Richard Smith · 12 years ago
  99. 1a6c43a Test that we correctly deal with multiple copy constructors when detecting by Richard Smith · 12 years ago
  100. a6b2581 Fix the '-fuse-init-array' option to actually be an option. by Chandler Carruth · 12 years ago