1. 414d896 Implement ARM pcs attribute. Basically it's another way of calling convention selection (AAPCS or by Anton Korobeynikov · 13 years ago
  2. 8a9013d Parse an '@' in an Objective-C++ class member specification, by Douglas Gregor · 13 years ago
  3. 5bbcdbf Chained PCH: Remember when additional specializations are added to a function template from a previous PCH. Fixes the only crasher when using massive chains on Clang's Sema component. We still have some incomplete codegen there. by Sebastian Redl · 13 years ago
  4. e7a03c9 Add header guards to include/clang/Basic/ConvertUTF.h. by Sebastian Redl · 13 years ago
  5. dde5557 Re-fix r129481 and r129465 properly. Nulls fixits shouldn't be dropped in by Eli Friedman · 13 years ago
  6. 3e2193c Add a flag to StringLiteral to keep track of whether the string is a pascal string or not. by Anders Carlsson · 13 years ago
  7. fd183ba Collect the options applicable to the Rewriter methods into a RewriterOptions struct. by Argyrios Kyrtzidis · 13 years ago
  8. 6943e9b In Microsoft mode, within class scope, if a CXXScopeSpec's type is equal to the type of one of the base classes then downgrade the missing typename error to a warning. Up to now this is the only case I found where MSVC doesn't require "typename" at class scope. Really strange! by Francois Pichet · 13 years ago
  9. b8f17ab Redeclaration of 'self' should be flagged in by Fariborz Jahanian · 13 years ago
  10. f077c0d Driver: Don't treat -m{abi,arch,cpu,cmodel}= as "driver" options, they don't by Daniel Dunbar · 13 years ago
  11. 627788c Fix a regression where the initializer implements by Fariborz Jahanian · 13 years ago
  12. 755d849 After some discussion with Doug, we decided that it made a lot more sense by John McCall · 13 years ago
  13. 235c02f Teach GRState::getSValAsScalarOrLoc() about C++ references. by Ted Kremenek · 13 years ago
  14. 9fec9b1 C++ static analysis: also invalidate fields of objects that are the callees in C++ method calls. by Ted Kremenek · 13 years ago
  15. d762357 Typo. by Fariborz Jahanian · 13 years ago
  16. 1d01531 Fixup more objc rwriter bug having to do with by Fariborz Jahanian · 13 years ago
  17. 379b515 More __unknown_anytype work. by John McCall · 13 years ago
  18. 575b374 Remove CK_DynamicToNull. by Anders Carlsson · 13 years ago
  19. 0fee330 Add CXXDynamicCastExpr::isAlwaysNull() which will be replacing the cast kind I added. by Anders Carlsson · 13 years ago
  20. bc34b1d PR9669: implement correct checking for [dcl.init.string]p2. by Eli Friedman · 13 years ago
  21. 7d99bc3 As a first step towards fixing PR9641, add a CK_DynamicToNull cast kind which by Anders Carlsson · 13 years ago
  22. fb8721c Simplify calling CheckPlaceholderExpr, converge on it in a few places, by John McCall · 13 years ago
  23. f65076e Enhance the diagnostic for literal float -> int conversions to suggest by Chandler Carruth · 13 years ago
  24. 8d051e0 MSVC accepts that default parameters be redefined for member functions by Francois Pichet · 13 years ago
  25. a5fc472 Fix a bunch of major problems with __unknown_anytype and properly test by John McCall · 13 years ago
  26. b8a3e81 refactor -ccc-gcc-name code by Dylan Noblesmith · 13 years ago
  27. a49218e PR8369: make __attribute((regparm(0))) work correctly. Original patch by by Eli Friedman · 13 years ago
  28. b600669 Clean up the bool conversion warning. Group it with other conversion by Chandler Carruth · 13 years ago
  29. 23aa9c8 add a __sync_swap builtin to fill out the rest of the __sync builtins. by Chris Lattner · 13 years ago
  30. a00d678 Remove a pair of unused diagnostic messages. by Eric Christopher · 13 years ago
  31. 0ff3259 complete documentation of flags, patch by nobled by Chris Lattner · 13 years ago
  32. ec73460 Properly traverse a ObjCMethodDecl in RecursiveASTVisitor. by Argyrios Kyrtzidis · 13 years ago
  33. 49af1f3 Rename -mtrap_function= to -ftrap_function= since it's now a target neutral options. by Evan Cheng · 13 years ago
  34. b20e442 Add -mtrap_function=<> option. rdar://9257465 by Evan Cheng · 13 years ago
  35. 429bb27 Use ExprResult& instead of Expr *& in Sema by John Wiegley · 13 years ago
  36. b7bc34a Warn for any kind of initialization if initializer does not by Fariborz Jahanian · 13 years ago
  37. 584b9d6 Switch 'is possibly uninitialized' to 'may be uninitialized' based on by Chandler Carruth · 13 years ago
  38. f04eb2d Now that the analyzer is distinguishing between uninitialized uses that by Chandler Carruth · 13 years ago
  39. 089f872 Driver: Don't attempt to forward some Clang-only options to cc1. by Daniel Dunbar · 13 years ago
  40. b6534bb Fronted/CC_LOG_DIAGNOSTICS: Wire up dwarf-debug-flags support. by Daniel Dunbar · 13 years ago
  41. 28f1493 Fronted/CC_LOG_DIAGNOSTICS: Output main file name, and add support for by Daniel Dunbar · 13 years ago
  42. 64bfbf5 Frontend: Continue flushing out LogDiagnosticPrinter. by Daniel Dunbar · 13 years ago
  43. 9df2349 Frontend: Sketch a LogDiagnosticPrinter object, and wire CC_LOG_DIAGNOSTICS to by Daniel Dunbar · 13 years ago
  44. b680d4b ChainedDiagnosticClient: Fix a bug where chained diagnostic clients wouldn't by Daniel Dunbar · 13 years ago
  45. 08c6695 Frontend: Sketch support for -diagnostic-log-file, which still doesn't do anything. by Daniel Dunbar · 13 years ago
  46. b65ed34 Enhance the Rewriter. by Argyrios Kyrtzidis · 13 years ago
  47. 8f89652 Add FullSourceLoc::BeforeThanCompare. a comparison function class, useful for sorting FullSourceLocs. by Argyrios Kyrtzidis · 13 years ago
  48. c8a22b0 Driver: Sketch driver support for a CC_LOG_DIAGNOSTICS options, similar to the by Daniel Dunbar · 13 years ago
  49. 737d544 In C++ the argument of logical not should always be bool. Added missing implicit cast for scalars. by Abramo Bagnara · 13 years ago
  50. 1de4d4e Basic, untested implementation for an "unknown any" type requested by LLDB. by John McCall · 13 years ago
  51. 759abb4 Fix lookup for class messages sent to qualified-class by Fariborz Jahanian · 13 years ago
  52. 4c8acc9 Fix spelling. by Michael J. Spencer · 13 years ago
  53. 30f6471 Make this const, there's probably no harm in it and it silences a bunch by Eric Christopher · 13 years ago
  54. ae8ec2b Fix building with gcc. by Argyrios Kyrtzidis · 13 years ago
  55. d40066b Fix PR 9626 (duplicated self-init warnings under -Wuninitialized) with numerous CFG and UninitializedValues analysis changes: by Ted Kremenek · 13 years ago
  56. 832316e Move Driver::createInvocationFromArgs function to Frontend library to avoid dependency cycle by Argyrios Kyrtzidis · 13 years ago
  57. 054e4f5 Introduce Driver::createInvocationFromArgs used to create a CompilerInvocation from command-line args. by Argyrios Kyrtzidis · 13 years ago
  58. 5862f0e When emitting a "too many arguments to function call..." error, also include a note with a location for the function prototype. by Ted Kremenek · 13 years ago
  59. cccc02a PR9585: add __decltype as a keyword. While I'm here, alphabetize the list. by Eli Friedman · 13 years ago
  60. 8083414 static analyzer: Add a new ProgramPoint PostCondition to represent the post position of a branch condition, and a new generateNode method to BranchNodeBuilder using PostCondition ProgramPoint. This method generates a new ExplodedNode but not a new block edge. by Ted Kremenek · 13 years ago
  61. 4d840e9 [analyzer] Simplify CheckerFn template and use it more to reduce duplication. No functionality change. by Argyrios Kyrtzidis · 13 years ago
  62. 2bfa301 Remove a redundant method. We have a const version. by Zhongxing Xu · 13 years ago
  63. 422ab7a Teach IdempotentOperationsChecker about paths aborted because ExprEngine didn't know how to handle a specific Expr type. by Ted Kremenek · 13 years ago
  64. 66750fa static analyzer: Rename 'BlocksAborted' to 'BlocksExhausted' to reflect that a given CFGBlock was analyzed too many times. by Ted Kremenek · 13 years ago
  65. ce0682f Make ChainedIncludesSource an ExternalSemaSource, otherwise initialization of the ASTReader is incomplete, leading to errors like not realizing std::type_info is already defined. by Sebastian Redl · 13 years ago
  66. ad1a4c6 Change Clang's __VERSION__ to include the same basic info as in clang -v. by Daniel Dunbar · 13 years ago
  67. 2d33e42 Use intrinsics for Neon vmull operations. Radar 9208957. by Bob Wilson · 13 years ago
  68. b78c33f Put "#pragma message ..." into its own warning (human friendly) category. by Ted Kremenek · 13 years ago
  69. a6c5308 Silence warnings of unkwown -Wlarger-than and -Wframe-larger-than. Fixes rdar://6970318. by Argyrios Kyrtzidis · 13 years ago
  70. b277159 Begin reworking static analyzer support for C++ method calls. The current logic was divorced by Ted Kremenek · 13 years ago
  71. 68af13f Fix IRGen issues related to using property-dot syntax by Fariborz Jahanian · 13 years ago
  72. 1293cda [analyzer] Checker Packages can now belong to a group. This requires llvm commit r128474. by Argyrios Kyrtzidis · 13 years ago
  73. 9693232 Integrated-As: Support -Wa,-L when using the integrated assembler. by Daniel Dunbar · 13 years ago
  74. 402adc3 Frontend/cc1as: Add support for -L. by Daniel Dunbar · 13 years ago
  75. 7f3ad23 Remove stray null from the middle of a comment. (Found because my editor by Eli Friedman · 13 years ago
  76. 4147d30 Improve recovery (error + fix-it) when parsing type dependent template name without the "template" keyword. by Francois Pichet · 13 years ago
  77. a7689ef Diagnose uninitialized uses of a variable within its own initializer. by Chandler Carruth · 13 years ago
  78. d06fea8 supported: AltiVec vector initialization with a single literal according to PIM section 2.5.1 - after initialization all elements have the value specified by the literal by Anton Yartsev · 13 years ago
  79. abaca7a Add an option to suppress include stack printing on note diagnostics. by Chandler Carruth · 13 years ago
  80. 5adb5a8 Add -f[no-]strict-overflow to the Clang driver. Use it to set the by Chandler Carruth · 13 years ago
  81. 077f490 More coherent diagnostic attempting to assign to a member of a const object returned by Fariborz Jahanian · 13 years ago
  82. 3d9ce90 Make diagnostic clearer. by Fariborz Jahanian · 13 years ago
  83. 4421d2b On Mac OS X, the presence of an 'availability' attribute for that by Douglas Gregor · 13 years ago
  84. b53e417 Extend the new 'availability' attribute with support for an by Douglas Gregor · 13 years ago
  85. 2234873 Allow GC qualifiers to be added/removed by conversions from/to void* by John McCall · 13 years ago
  86. 3812999 TraverseNestedNameSpecifier -> TraverseNestedNameSpecifierLoc in a few by Craig Silverstein · 13 years ago
  87. 8a29ba0 Remove the last of ClassVirtSpecifiers. by Anders Carlsson · 13 years ago
  88. 2c3ee54 Get rid of handling of the 'explicit' keyword from class-head. We still parse it though, although that will change shortly. by Anders Carlsson · 13 years ago
  89. 844c25d Remove warnings about using override control keywords in inline function definitions; they will be allowed in the next C++0x draft. by Anders Carlsson · 13 years ago
  90. b1f3968 Remove 'new' from virt-specifier since it's going to be removed in the next C++0x draft by Anders Carlsson · 13 years ago
  91. 909a70d Apply the nonnull attribute to constructor expressions too. by Nick Lewycky · 13 years ago
  92. 0b7e678 Insomniac refactoring: change how the parser allocates attributes so that by John McCall · 13 years ago
  93. 2b32dad Add a new warning for exit-time destructors. by Anders Carlsson · 13 years ago
  94. c05a94b Call out ObjC parameter types as a different kind of declarator context by John McCall · 13 years ago
  95. d97f558 Support for Transparent unions used as overloadable by Fariborz Jahanian · 13 years ago
  96. 2923380 Teach DelayedDiagnostic to copy its string, rather than hope that the by Douglas Gregor · 13 years ago
  97. 7f9fc3f switch a few Driver APIs to use llvm::ArrayRef, cleaning up code. by Chris Lattner · 13 years ago
  98. 9d5a165 Fix crash in clang_getInstantiationLoc() when SourceManager::getInstantiationLoc() can return a SourceLocatin with an invalid by Ted Kremenek · 13 years ago
  99. 0a0d2b1 Implement a new 'availability' attribute, that allows one to specify by Douglas Gregor · 13 years ago
  100. ac4df24 Warn about unused declaration-specifiers on tag declarations. by John McCall · 13 years ago