1. 772494c Add abort() as a builtin. This has two effects: one, we warn for incorrect by Eli Friedman · 15 years ago
  2. ac7db1f More FullExpr work. by Anders Carlsson · 15 years ago
  3. d4a0552 More work on the FullExpr class. by Anders Carlsson · 15 years ago
  4. 6b8ee78 Teach CheckerVisitor about CXXOperatorCallExpr. by Ted Kremenek · 15 years ago
  5. 1c80087 Teach CFRecStmtDeclVisitor about CXXMethodDecl. by Ted Kremenek · 15 years ago
  6. 3ad359b Make GRSubEngine.h standalone by Douglas Gregor · 15 years ago
  7. 6864748 Fix semantic diagnostics that embed English works, from Nicola Gigante! by Douglas Gregor · 15 years ago
  8. 852274d Add (initial?) static analyzer support for handling C++ references. by Ted Kremenek · 15 years ago
  9. 5ee56e9 Check in a rudimentary FullExpr class that isn't used anywhere yet. Rename Action::FullExpr to Action::MakeFullExpr to avoid name clashes. by Anders Carlsson · 15 years ago
  10. 5fdd764 Successive anonymous namespaces name the same scope. I misinterpreted the by John McCall · 15 years ago
  11. 99a2e60 Switch the C++ new expression over to InitializationSequence, rather by Douglas Gregor · 15 years ago
  12. 2514a30 Diagnose attempting to assign to a sub-structure of an ivar by Fariborz Jahanian · 15 years ago
  13. 28172a2 Remove ValueManager::getRegionValueSymbolValOrUnknown(). It was just extra veneer on top of getRegionValueSymbolVal(). by Ted Kremenek · 15 years ago
  14. 0ece491 ShouldDestroyTemporaries? I don't think so. by Anders Carlsson · 15 years ago
  15. 337cba4 If a ParmVarDecl's default argument is a CXXExprWithTemporaries, return the underlying expr instead. Add getNumDefaultArgTemporaries and getDefaultArgTemporary which returns the temporaries a default arg creates. by Anders Carlsson · 15 years ago
  16. 0479a0b Support OpenCL 1.1 odd-length vector component accessors. by Nate Begeman · 15 years ago
  17. 5cc07df Fix some diagnostic-related FIXMEs, from Nicola Gigante by Douglas Gregor · 15 years ago
  18. 8d09baf Remove displayProgress parameter. by Zhongxing Xu · 15 years ago
  19. aed1df8 move isPodLike<clang::QualType> out to Type.h. We don't by Chris Lattner · 15 years ago
  20. 06159e8 update to match LLVM API change: by Chris Lattner · 15 years ago
  21. 2125adb Add -W[no-]variadic-macros support. by Daniel Dunbar · 15 years ago
  22. feecdf1 Forward -isysroot to clang -cc1. by Daniel Dunbar · 15 years ago
  23. 4b2b02b Diagnose the use of typedefs for template specialization types in the scope by John McCall · 15 years ago
  24. 23f77e5 set up the machinery for a MacroArgs cache hanging off Preprocessor. by Chris Lattner · 15 years ago
  25. 8b9adfe Add -resource-dir to clang -cc1, this allows the base directory for compiler by Daniel Dunbar · 15 years ago
  26. 5348f94 Fix: <rdar://problem/7468209> SymbolManager::isLive() should not crash on captured block variables that are passed by reference by Ted Kremenek · 15 years ago
  27. 6eef519 Improve template instantiation for object constructions in several ways: by Douglas Gregor · 15 years ago
  28. 34f349d teach clang to recover gracefully from conflict markers left in source by Chris Lattner · 15 years ago
  29. c3420ff Revert mmx palignr to use an intrinsic, since mmx shuffle patterns are missing. by Nate Begeman · 15 years ago
  30. ce5818a Support x86's PALIGNR instruction without the use of a palignr intrinsic. by Nate Begeman · 15 years ago
  31. 1d9c54d formatting changes. by Chris Lattner · 15 years ago
  32. 8483443 Rename dump to dumpDeclContext, so that call RD->dump() won't dump the decl context by default. by Anders Carlsson · 15 years ago
  33. 156c78e More improvements to checking allocation and deallocation functions. by Anders Carlsson · 15 years ago
  34. 869824e Lift builtin-include-path logic out of ASTUnit::LoadFromCommandLine and fix CIndex to pass in the right directory (previously it was using the path to the main executable, which generally is wrong). by Daniel Dunbar · 15 years ago
  35. 1e69fe3 CompilerInvocation: Move builtin-include-path logic out of CompilerInvocation::CreateFromArgs. by Daniel Dunbar · 15 years ago
  36. 60cfcec Silence some release build warnings. by Chandler Carruth · 15 years ago
  37. a88cfbf Rework the way we handle template instantiation for by Douglas Gregor · 15 years ago
  38. d9c84c8 Add initial support for realloc() in MallocChecker. by Zhongxing Xu · 15 years ago
  39. aa87d33 Remember the type name's scope specifier in the DeclSpec. by John McCall · 15 years ago
  40. a63d40f Give PartialDiagnostic copy semantics rather than move semantics, since we typically pass it by reference by Douglas Gregor · 15 years ago
  41. cc5ee6b Remove unnecessary pointers from PartialDiagnostic by Douglas Gregor · 15 years ago
  42. 9f61aa9 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 15 years ago
  43. 9c276ae Implement runtime checks for undefined behavior. WIP. by Mike Stump · 15 years ago
  44. f86f0d8 Remove non-sensical FIXME. by Daniel Dunbar · 15 years ago
  45. 6feaf57 Make using '-fshort-enums' an error until it is actually implemented (changes the ABI, so it is dangerous to not error out if we don't support it). Fixes <rdar://problem/7461006>. by Ted Kremenek · 15 years ago
  46. a3ccda5 Factor operator new declaration checking out into a separate function. by Anders Carlsson · 15 years ago
  47. 46991d6 More work on improving the operator delete diagnostics. by Anders Carlsson · 15 years ago
  48. 9d59ecb Improve diagnostics for malformed delete operator function declarations. by Anders Carlsson · 15 years ago
  49. dd63b28 Update docs/comments/utils/examples to refer to clang -cc1 instead of clang-cc. by Daniel Dunbar · 15 years ago
  50. 8ff5b28 Driver: Switch to using "clang" "-cc1" instead of "clang-cc". by Daniel Dunbar · 15 years ago
  51. 3b27f1a Patch to allow C-style cast from 'void *' to block pointer type. by Fariborz Jahanian · 15 years ago
  52. d8e494f Switch PathDiagnostic to StringRef. by Benjamin Kramer · 15 years ago
  53. 8294809 Fix two typos. by Benjamin Kramer · 15 years ago
  54. e7e278b Don't enter a new scope for a namespace-qualified declarator unless we're by John McCall · 15 years ago
  55. 2b87ae4 Enhance understanding of VarRegions referenced by a block whose declarations are outside the current stack frame. Fixes <rdar://problem/7462324>. by Ted Kremenek · 15 years ago
  56. 60fa3cf Implement access declarations. Most of the work here is parsing them, which by John McCall · 15 years ago
  57. 7e1848d Give the "cannot pass object of non-POD type 'class C' through variadic constructor; call will abort at runtime" warning a -W flag (non-pod-varargs) and default it being an error by default. There is no good reason to allow users to get bitten by this sort of thing by default. by Chris Lattner · 15 years ago
  58. 737061f Patch to fix a crash trying to access a category name in by Fariborz Jahanian · 15 years ago
  59. 41ce66f Improve the diagnostic when a new declaration conflicts with a using shadow by John McCall · 15 years ago
  60. d87b61f Move initialization via initializer list over to InitializationSequences. by Douglas Gregor · 15 years ago
  61. 9f54ad4 Implement redeclaration checking and hiding semantics for using declarations. There by John McCall · 15 years ago
  62. de138eb Second half of r91023, saving files is good. by Chris Lattner · 15 years ago
  63. 08d92ec refactor the 'ColonIsSacred' argument to ParseOptionalCXXScopeSpecifier by Chris Lattner · 15 years ago
  64. 20093b4 Reimplement reference initialization (C++ [dcl.init.ref]) using the by Douglas Gregor · 15 years ago
  65. 3acd9aa Fixes a bogus error when declaring an extern "C" array. (fixes radar 7457109). by Fariborz Jahanian · 15 years ago
  66. e4cb2a4 Fix 80-col violation. by Mike Stump · 15 years ago
  67. 2b7d8dd Add DeclContext::dump. by Anders Carlsson · 15 years ago
  68. 1ec4e97 Refactor OSAtomic evaluation logic into OSAtomicChecker. by Zhongxing Xu · 15 years ago
  69. b94ffa4 clang -cc1: Mark -i* options as JoinedOrSeparate, since the driver forwards them by Daniel Dunbar · 15 years ago
  70. 842aef8 First pass at implementing C++ enum semantics: calculate (and store) an by John McCall · 15 years ago
  71. 43c79c2 Implemented an implicit conversion from "noreturn" function types (and by Douglas Gregor · 15 years ago
  72. 92ef5d7 More detailed analysis of typecast to an objective-c pointer by Fariborz Jahanian · 15 years ago
  73. 7cdc25e Make the BugType.h header self-contained so Daniel will stop bugging me ;) by Anders Carlsson · 15 years ago
  74. 87667aa Unbreak clang-cc handling of -msoft-float / -mfloat-abi=, which I borked. by Daniel Dunbar · 15 years ago
  75. dbd872f DeclRefExpr stores a ValueDecl internally. by John McCall · 15 years ago
  76. 604e7f1 Correctly implement the C++03 and 0x restrictions on class-member using by John McCall · 15 years ago
  77. e8174bc Add CXXRecordDecl::forallBases to walk an inheritance hierarchy with non-lookup by John McCall · 15 years ago
  78. ba03dfd Remove dead diagnostics by Douglas Gregor · 15 years ago
  79. 265f52e Get rid of some diagnostics that don't follow our rules for -pedantic by Eli Friedman · 15 years ago
  80. e3fdca2 Remove several .c_str() to be forward-compatible with StringRef. by Jeffrey Yasskin · 15 years ago
  81. 812c154 Recover from dot accesses to record pointers and arrow accesses to records. by John McCall · 15 years ago
  82. fc57651 Add clang-cc option '-analyzer-opt-analyze-nested-blocks' to treat block literals as an entry point for analyzer checks. by Ted Kremenek · 15 years ago
  83. 67d1287 Add analysis support for blocks. This includes a few key changes: by Ted Kremenek · 15 years ago
  84. 7ca7987 Shorten the help test for -no-canonical-prefixes, put it behind HelpHidden and by Rafael Espindola · 15 years ago
  85. 9a0c85e Code completion for Objective-C @ keywords that are statements or expressions by Douglas Gregor · 15 years ago
  86. c464ae8 Code completion for Objective-C @ directives by Douglas Gregor · 15 years ago
  87. 935ef90 Add EvalCallExpr interface to checker, and migrate the no-return function by Zhongxing Xu · 15 years ago
  88. b13e357 getTemplateSpecializationKind should be const. by Anders Carlsson · 15 years ago
  89. f53df23 Move key functions to a separate map. by Anders Carlsson · 15 years ago
  90. a93c934 DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated variables, by John McCall · 15 years ago
  91. c08582b add 'F' to a bunch of libm builtins so that codegen doesn't die on them, by Chris Lattner · 15 years ago
  92. 4664649 reapply my patch for PR4451, which improves diagnostics for :: vs : confusion. by Chris Lattner · 15 years ago
  93. 19a9edb Remove a now out of date and out of place comment about predefined exprs from the FloatingLiteral class declaration. by Sam Weinig · 15 years ago
  94. 1ade4ca revert my previous patch, it is breaking something and I don't have time by Chris Lattner · 15 years ago
  95. d7d7f67 Move helper onto CXXMethodDecl. by Eli Friedman · 15 years ago
  96. a564b17 implement PR4451, improving error recovery for a mistaken : where a :: was by Chris Lattner · 15 years ago
  97. bb3503a Document that CompilerInvocation::createDiagnostics keeps a reference to the DiagnosticOptions, and update callers to make sure they don't pass in a temporary. by Daniel Dunbar · 15 years ago
  98. 2ffb14f Unbreak and add test case for r90276, a situation in which getBuffer is expected to fail. by Daniel Dunbar · 15 years ago
  99. 63ceaa3 Change Preprocessor::EnterSourceFile to make ErrorStr non-optional, clients should be forced to deal with error conditions. by Daniel Dunbar · 15 years ago
  100. 0304c6c Remove 'LangOpts' from Diagnostic (added in http://llvm.org/viewvc/llvm-project?view=rev&revision=90642). by Steve Naroff · 15 years ago