1. 2c21a07 merge some simple call diagnostics. by Chris Lattner · 16 years ago
  2. d3a94e2 remove another old-school Diag method. by Chris Lattner · 16 years ago
  3. 3c73c41 stop calling II::getName() unnecesarily in sema by Chris Lattner · 16 years ago
  4. dcd5ef1 remove one more old-style Diag method. by Chris Lattner · 16 years ago
  5. fa25bbb Switch several more Sema Diag methods over. This simplifies the by Chris Lattner · 16 years ago
  6. 2def483 Updated IdentifierResolver to deal with DeclarationNames. The names of by Douglas Gregor · 16 years ago
  7. 27c8dc0 Implement initialization of a reference (C++ [dcl.init.ref]) as part by Douglas Gregor · 16 years ago
  8. 6eec8e8 Rename ExplicitCCastExpr to CStyleCastExpr by Douglas Gregor · 16 years ago
  9. 49badde Refactor the expression class hierarchy for casts. Most importantly: by Douglas Gregor · 16 years ago
  10. de45428 Add support for format string checking of object-size checking by Daniel Dunbar · 16 years ago
  11. c50a4a5 Sema::ActOnBlockReturnStmt(): Need to perform the UsualUnaryConversions on the return type. by Steve Naroff · 16 years ago
  12. 61f40a2 More semantic analysis for blocks... by Steve Naroff · 16 years ago
  13. dd972f2 More type checking for blocks. Still incomplete (will hopefully finish up this weekend). by Steve Naroff · 16 years ago
  14. d5f8a4f Add __builtin_object_size support. by Daniel Dunbar · 16 years ago
  15. 0835a3c Add ExplicitCastExpr to replace the current CastExpr, and have ImplicitCastExpr and ExplicitCastExpr derive from a common base class (CastExpr): by Argyrios Kyrtzidis · 16 years ago
  16. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  17. c4a1dea More #include cleaning by Daniel Dunbar · 16 years ago
  18. d1a0b6d tighten up some code and some wording on diagnostics. by Chris Lattner · 16 years ago
  19. 54b5274 Fix <rdar://problem/6125909>. by Ted Kremenek · 16 years ago
  20. b77792e change more instances of QualType::getCanonicalType to call by Chris Lattner · 16 years ago
  21. 9801c8b Format string errors should underling the format string, not the function name. by Ted Kremenek · 16 years ago
  22. 4493f79 Implement nans, prefetch, and trap builtins. by Daniel Dunbar · 16 years ago
  23. 49ff7a1 Extend va_start checking to include __builtin_stdarg_start. by Ted Kremenek · 16 years ago
  24. b7cfe88 Make a few related changes: by Chris Lattner · 16 years ago
  25. 53d0ea5 Replace CurFunctionDecl and CurMethodDecl with methods getCurFunctionDecl() and getCurMethodDecl() that return the appropriate Decl through CurContext. by Argyrios Kyrtzidis · 16 years ago
  26. 7ff22b2 Introduce preliminary support for NSString format-string checking. by Ted Kremenek · 16 years ago
  27. 6cfda23 Add __builtin_frame_address and __builtin_return_address gcc builtins to by Eli Friedman · 16 years ago
  28. ba2561a Review nit. by Eli Friedman · 16 years ago
  29. e801870 Clean up ownership per review comment. by Eli Friedman · 16 years ago
  30. 3e9d253 Fixed another regression introduced by r51113 caused by some refactoring by Ted Kremenek · 16 years ago
  31. d38617c Implementation of __builtin_shufflevector, a portable builtin capable of by Eli Friedman · 16 years ago
  32. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from Sema/SemaChecking.cpp]
  33. 6d43959 Added TODO. by Ted Kremenek · 16 years ago
  34. e2c1410 Use IgnoreParenCasts. by Anders Carlsson · 16 years ago
  35. 56f3494 Move IgnoreParenCasts to be a method on Expr. by Chris Lattner · 16 years ago
  36. 88cf226 Get rid of bogus warnings when the second argument in va_start is either an implicit cast expr or a paren expr. by Anders Carlsson · 16 years ago
  37. 32e97b6 Fixed typo introduced by r46133 that caused -Wfloat-equal to break. by Ted Kremenek · 17 years ago
  38. 4e99a5f Added method Expr::IgnoreParens(), which returns the first non-ParenExpr Expr*. by Ted Kremenek · 17 years ago
  39. a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
  40. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  41. 998568f various cleanups. Use IgnoreParenCasts instead of inlined versions. by Chris Lattner · 17 years ago
  42. fae3f1f unindent cases in a switch stmt, no functionality change. by Chris Lattner · 17 years ago
  43. 925e60d Change Sema::ActOnCallExpr to construct the CallExpr early and put it into by Chris Lattner · 17 years ago
  44. 7359f04 More objective-c typechecking stuff. This is work in progress and more patches by Fariborz Jahanian · 17 years ago
  45. 1b9a079 implement semantic analysis for __builtin_islessequal and friends. by Chris Lattner · 17 years ago
  46. c27c665 simplify some code. by Chris Lattner · 17 years ago
  47. 30ce344 refactor some code that handles sema of direct function calls. by Chris Lattner · 17 years ago
  48. b99a4a3 by Steve Naroff · 17 years ago
  49. 4a33646 Modified format-string checking to not emit a warning when all of the by Ted Kremenek · 17 years ago
  50. 9796915 Format string checker: asprintf does not pass argumnents via va_list. by Ted Kremenek · 17 years ago
  51. b107ce8 Simplified setting up Method's scope before generating AST for its nody. by Fariborz Jahanian · 17 years ago
  52. 3907323 GCC has an extension where the left hand side of the ? : operator can be omitted. Handle this in a few more places. by Anders Carlsson · 17 years ago
  53. 1b500bb Enhanced implementation of -Wfloat-equal to check for comparisons against by Ted Kremenek · 17 years ago
  54. 588e5eb Moved logic for -Wfloat-equal to SemaChecking.cpp. by Ted Kremenek · 17 years ago
  55. 580b664 Added notion of '*' specified format width/specifiers when checking by Ted Kremenek · 17 years ago
  56. 6eda8c9 Add some more diagnostics for va_start, fix tests so they pass with these new diags. by Anders Carlsson · 17 years ago
  57. bef679c Printf argument checking now supports dynamically-passed precision specifiers. by Ted Kremenek · 17 years ago
  58. 6f4b92c Fix 80 col violations. by Chris Lattner · 17 years ago
  59. e8c600f Fixed return-of-stack-address checker to correctly handle stack/global by Ted Kremenek · 17 years ago
  60. 96eabe0 Updated checker for "return of address of stack variable" to look for by Ted Kremenek · 17 years ago
  61. 5e9885d Fix %p format checking, patch by Keith Bauer. by Chris Lattner · 17 years ago
  62. a9e2ea1 For warnings like this: by Chris Lattner · 17 years ago
  63. 459e848 Fix the test/Sema/format-strings.c regression. This code should be refactored. by Chris Lattner · 17 years ago
  64. cc6f65d Fix the regression on test/Sema/cfstring.c by Chris Lattner · 17 years ago
  65. 2324512 Modified ArraySubscriptExpr to have accessors getLHS and getRHS in addition by Ted Kremenek · 17 years ago
  66. 06de276 Added extra semantic checking to do basic detection of by Ted Kremenek · 17 years ago
  67. 9cdc4d3 Return true in case of error, which is what other functions do. by Anders Carlsson · 17 years ago
  68. 71993dd Add initial support for constant CFStrings. by Anders Carlsson · 17 years ago
  69. 71895b9 Added support for additional format string checking for the printf by Ted Kremenek · 17 years ago
  70. 8207710 Added "id_idx" parameter to CheckPrintfArguments. This will be used by Ted Kremenek · 17 years ago
  71. 59907c4 initial support for checking format strings, patch by Ted Kremenek: by Chris Lattner · 17 years ago