1. c6daf0b When printing a qualified type, look through a substituted template by Douglas Gregor · 14 years ago
  2. b72c778 Improve parser recovery in "for" statements, from Richard Smith! by Douglas Gregor · 14 years ago
  3. 4706e87 When Parser::ParseExpressionList isn't given a completer, fall back to by Douglas Gregor · 14 years ago
  4. 26ae5dd Fix PR9025 and add a diagnostic (and sometimes a fixit) for an overloaded by Matt Beaumont-Gay · 14 years ago
  5. 45d246f update this test now that reassociate isn't stripping nsw's pointlessly. by Chris Lattner · 14 years ago
  6. 41aadbc Improve diagnostics when property names an object type of by Fariborz Jahanian · 14 years ago
  7. 577cdfd Implement code completion results for the Objective-C Key-Value Coding by Douglas Gregor · 14 years ago
  8. a03733b Ensure that the NRVO flag has some block to insert into. Fixes PR9178! by Nick Lewycky · 14 years ago
  9. c71a2c0 Fix assertion failure in -Warray-bounds on template parameters used as arrays. by Ted Kremenek · 14 years ago
  10. 05318d8 Block rewriting bug. Don't take address of captured by Fariborz Jahanian · 14 years ago
  11. bac7737 Placate Doug and change capitalization of diagnostic note. by Ted Kremenek · 14 years ago
  12. bb6f548 If preprocessed token introduced empty filename then use main translation unit's filename for debug info entries. by Devang Patel · 14 years ago
  13. e996ffd Save a copy expression for non-trivial copy constructions of catch variables. by John McCall · 14 years ago
  14. 8fd0a5d Tweak -Warray-bounds diagnostics based on feedback from Chandler. by Ted Kremenek · 14 years ago
  15. 652f1ef test/CMakeLists.txt: Don't depend on llvm toolchain at clang-standalone build. by NAKAMURA Takumi · 14 years ago
  16. 9e7c461 test/PCH/headersearch.cpp fails on Win32. Not trivial to fix. by Francois Pichet · 14 years ago
  17. a0125d8 Add trivial buffer overflow checking in Sema. by Ted Kremenek · 14 years ago
  18. 0b1ba62 [analyzer] Use the new registration mechanism on the apple checkers: by Argyrios Kyrtzidis · 14 years ago
  19. d98abd8 When searching for visible declarations (e.g., for code completion), by Douglas Gregor · 14 years ago
  20. 78bcd91 When trying to provide a code completion item for a call to "super" in by Douglas Gregor · 14 years ago
  21. c20e204 Don't call objc_read_weak as part of emitting a block literal. by John McCall · 14 years ago
  22. ff1ed98 Warn for missing terminating " or ' instead of error for gcc compatibility. Fixed rdar://8914293. by Argyrios Kyrtzidis · 14 years ago
  23. 23ade50 [analyzer] Use the new registration mechanism on some of the experimental internal checkers: by Argyrios Kyrtzidis · 14 years ago
  24. c9f2e0f [analyzer] Use the new registration mechanism on the IdempotentOperationChecker. by Argyrios Kyrtzidis · 14 years ago
  25. 4bfd680 Handle delayed access in local declarations. PR9229. by John McCall · 14 years ago
  26. 830072c Teach code completion to cope with block types written without a by Douglas Gregor · 14 years ago
  27. 4e274e9 Add a hack to avoid adding '\01' to asm names when possible. It would be by Rafael Espindola · 14 years ago
  28. afc4578 Implement a special code-completion pattern for "IBAction". Fixes by Douglas Gregor · 14 years ago
  29. a0decc9 [analyzer] Use the new registration mechanism on some of the experimental checks. These are: by Argyrios Kyrtzidis · 14 years ago
  30. 68e3c2e When code-completing within a list of declaration specifiers, by Douglas Gregor · 14 years ago
  31. db27d82 OpenCL: standardise naming of test cases by Peter Collingbourne · 14 years ago
  32. 84bccea Serialization/deserialization support for floating point #pragma by Peter Collingbourne · 14 years ago
  33. 39d3e7a OpenCL: semantic analysis support for cl_khr_fp64 extension by Peter Collingbourne · 14 years ago
  34. 97d7ff0 When we encounter an Objective-C class name in an expression, followed by Douglas Gregor · 14 years ago
  35. d6c9a0f In -fapple-kext mode, global object construction code by Fariborz Jahanian · 14 years ago
  36. f552c20 Emit in-class member function definitions that are marked by Douglas Gregor · 14 years ago
  37. 8e3df4d Allow resolving headers from a PCH even after headers+PCH were moved to another path. by Argyrios Kyrtzidis · 14 years ago
  38. 718b01d Add CMake support to the clang unittests. by Jeffrey Yasskin · 14 years ago
  39. 027a6ab [analyzer] Use the new registration mechanism on some of the internal checks. These are: by Argyrios Kyrtzidis · 14 years ago
  40. b25b295 Return a declaration to the parser when creating a field in C++ so that by John McCall · 14 years ago
  41. 9b7da1c Perform zero-initialization of virtual base classes when emitting by John McCall · 14 years ago
  42. b1224f6 Warn if method for a deprecated method is implemented. by Fariborz Jahanian · 14 years ago
  43. d61df3d Put "incomplete implementation" warning under a flag. by Ted Kremenek · 14 years ago
  44. 417d39f Don't crash on hierarchy static_casts which appear in variable initializers. by John McCall · 14 years ago
  45. f5ba7e0 Change the context correctly when instantiating a static data member definition. by John McCall · 14 years ago
  46. 79ab2c8 Provide overload diagnostics when explicit casts involving class types fail. by John McCall · 14 years ago
  47. 43dee22 [analyzer] Overhauling of the checker registration mechanism. by Argyrios Kyrtzidis · 14 years ago
  48. e8350c6 Fix edge case where we don't cull warnings in IdempotentOperationsChecker due to incomplete analysis of loops. by Ted Kremenek · 14 years ago
  49. b8b07b1 Handle 'UsingDirective' in CFGRecStmtDeclVisitor. by Ted Kremenek · 14 years ago
  50. eee1d54 When parsing an out-of-line member function declaration, we must delay by John McCall · 14 years ago
  51. f315fa8 OpenCL: add support for __kernel, kernel keywords and EXTENSION, by Peter Collingbourne · 14 years ago
  52. 9d3f5f7 Make LexOnOffSwitch a Preprocessor member function by Peter Collingbourne · 14 years ago
  53. 0d70d71 Look through array types when deciding whether a field requires non-trivial by John McCall · 14 years ago
  54. e3c8c64 Implement objective-c++'s block pointer type matching involving by Fariborz Jahanian · 14 years ago
  55. 020c374 Teach the IdempotentOperations checker to ignore property setters. by Ted Kremenek · 14 years ago
  56. 0895d15 When reading the AST, delay loading of the redeclaration chain to avoid deeply nested calls. by Argyrios Kyrtzidis · 14 years ago
  57. b715a7c Weaken the ObjCSelfInitChecker to only warn when one calls an 'init' method within an 'init' method. This is a temporary stop gap to avoid false positives while we investigate how to make it smarter. by Ted Kremenek · 14 years ago
  58. f9eb0ae Add test case for <rdar://problem/6888289>. by Ted Kremenek · 14 years ago
  59. 148849a static analyzer: Also invalidate instance variables of a receiver in a message expression, just as we do with parameters. by Ted Kremenek · 14 years ago
  60. f4e532b Don't emit a dead store for '++' operations unless it occurs with a return statement. We've never seen any other cases that were real bugs. by Ted Kremenek · 14 years ago
  61. 848ec83 Don't report dead stores on unreachable code paths. Fixes <rdar://problem/8405222>. by Ted Kremenek · 14 years ago
  62. ac518ec Add test case for PR 8646. by Ted Kremenek · 14 years ago
  63. e2f82f7 Reject forbidden storage class specifiers in OpenCL. Patch by George Russell! by Peter Collingbourne · 14 years ago
  64. d263fd1 Fix a block sema bug where result type of initializer by Fariborz Jahanian · 14 years ago
  65. 040a804 Implement AST/PCH chaining support for macro definitions. Previously, by Douglas Gregor · 14 years ago
  66. 9c73610 When we're writing macro definitions to an AST/PCH File, sort the by Douglas Gregor · 14 years ago
  67. 74b47f9 For -Woverloaded-virtual take into account canonical methods. Fixes rdar://8979966 & http://llvm.org/PR9182. by Argyrios Kyrtzidis · 14 years ago
  68. 36e05ec Add a testcase for the mcount profiling. by Roman Divacky · 14 years ago
  69. af8ca37 Move the check that gives functions with unique-external types unique-external by John McCall · 14 years ago
  70. 89cc5d6 Add target triple. by Devang Patel · 14 years ago
  71. 7f53253 Fix scoping of method declarations and issue by Fariborz Jahanian · 14 years ago
  72. bf36e25 Parse: add support for parsing CUDA kernel calls by Peter Collingbourne · 14 years ago
  73. 14b6ba7 AST, Sema, Serialization: keep track of cudaConfigureCall by Peter Collingbourne · 14 years ago
  74. eb4c45b Do not emit AT_MIPS_linkage_name for Objective-C method static variable i. by Devang Patel · 14 years ago
  75. 17d3fea Driver/Frontend: Wire up -mregparm=. by Daniel Dunbar · 14 years ago
  76. 98af1ac test: CMake: Be aware of LLVM_LIT_TOOLS_DIR. by NAKAMURA Takumi · 14 years ago
  77. 6e108ce Emit debug info for objc_selector. by Devang Patel · 14 years ago
  78. a29bf41 When IRgen refers to a function declaration that is not a definition, by Douglas Gregor · 14 years ago
  79. b7ff4c6 analyzer, retain/release checker: Remove hack where objects passed in message to 'self' are no longer tracked. by Ted Kremenek · 14 years ago
  80. 332bb2a When checking the 'weak' and 'weakref' attributes, look for non-external by John McCall · 14 years ago
  81. b19c76e Fix an IRGen bug in property setter calls when by Fariborz Jahanian · 14 years ago
  82. f9536f4 Test case accidentally left out of my last commit. by John McCall · 14 years ago
  83. 651f86f In Sema::CheckShadow, get the DeclContext from the variable that we are checking by Argyrios Kyrtzidis · 14 years ago
  84. 1e52dfc Support for objextive-c++ use of property-dot syntax as receiver by Fariborz Jahanian · 14 years ago
  85. 461c9c1 Extend the const capture optimization to C++ record types with no by John McCall · 14 years ago
  86. 5e6fcd4 Sema::MaybeBindToTemporary() shouldn't treat any expression returning by Douglas Gregor · 14 years ago
  87. da26379 dgregor accidentally killed this assert, but on investigation, it can fire by John McCall · 14 years ago
  88. 8348de3 Support for objc use of property-dot syntax as receiver by Fariborz Jahanian · 14 years ago
  89. bb699b0 When copy-capturing values for a nested capture, use a BlockDeclRefExpr. by John McCall · 14 years ago
  90. 1b52844 Move uninitialized variable checking back under -Wuninitialized-experimental. It is clear from user feedback that this warning is not quite ready. by Ted Kremenek · 14 years ago
  91. 6b5a61b A few more tweaks to the blocks AST representation: by John McCall · 14 years ago
  92. 683564a pre/post ++/-- for AltiVec vectors. (with builtins-ppc-altivec.c failure fixed) by Anton Yartsev · 14 years ago
  93. 976d911 Add another test that we can fully devirtualize now. by Anders Carlsson · 14 years ago
  94. 22df7b1 Fix self-host; if a thunk already exists and has available_externally linkage, we should change its linkage instead of asserting. by Anders Carlsson · 14 years ago
  95. 14e82fd When building with optimizations, emit thunks with available_externally linkage so devirtualized function calls can also be de-thunked. by Anders Carlsson · 14 years ago
  96. ba43a4d Support running tests from the VS IDE and XCode. by Oscar Fuentes · 14 years ago
  97. 0750800 Add a __has_feature check for default template arguments in function by Douglas Gregor · 14 years ago
  98. f677ea3 Basic implementation of inherited constructors. Only generates declarations, and probably only works for very basic use cases. by Sebastian Redl · 14 years ago
  99. 57ca32b Support `make clang-test' when Clang is compiled outside of LLVM. by Oscar Fuentes · 14 years ago
  100. bbfd5ba Pass a 'ForVTable' flag to GetAddrOfThunk and pass it along to GetOrCreateLLVMFunction so that we by Anders Carlsson · 14 years ago