1. 24ae89a Another ParentMap bug: only the right side of a comma expression is consumed. by Ted Kremenek · 15 years ago
  2. e644939 Fix another regression introduced by changes to the analyzer's reasoning about by Ted Kremenek · 15 years ago
  3. e8dbf06 Refactor/cleanup reasoning of nil receivers in message expressions. by Ted Kremenek · 15 years ago
  4. c21c485 Driver: Split out CPP specific options for clang so that we don't end by Daniel Dunbar · 15 years ago
  5. a0c3e9c Fix <rdar://problem/6770998> make cast of super illegal (again:-) by Steve Naroff · 15 years ago
  6. 782f397 Use the new EmitCallArgs function. No indented functionality change. by Anders Carlsson · 15 years ago
  7. 0c7ce5b Added a FIXME. by Fariborz Jahanian · 15 years ago
  8. fd10511 finish the implementation of -imacros. The driver still needs to be hooked up. by Chris Lattner · 15 years ago
  9. 0139bb9 Add code for emitting call arguments (not used yet). by Anders Carlsson · 15 years ago
  10. e9918d2 We weren't generating correct code for calls to variadic member functions. by Anders Carlsson · 15 years ago
  11. 4af4412 Fix buffer overrun when laying out synthesized ivars. by Daniel Dunbar · 15 years ago
  12. d286992 Fixed a problem using property syntax on a 'super' used as receiver. by Fariborz Jahanian · 15 years ago
  13. 0f78fea Use presumed location to get line number info. by Devang Patel · 15 years ago
  14. da9ae60 Enhance analyzer reasoning about sending messages to nil. A nil receiver returns 0 for scalars of size <= sizeof(void*). by Ted Kremenek · 15 years ago
  15. e42ac98 Fix bug in ParentMap::isConsumedExpr. A BinaryOperator always "consumes" the by Ted Kremenek · 15 years ago
  16. de07665 reject the #__include_macros directive unless it comes from the by Chris Lattner · 15 years ago
  17. b8e240e Add initial support for -imacros. Right now it has the same semantics as by Chris Lattner · 15 years ago
  18. 3bbc753 More fixes to builtin preprocessor defines. by Daniel Dunbar · 15 years ago
  19. 9158804 Sema::CheckConditionalOperands(): Soften pointer/integer mismatch from error->warning. by Steve Naroff · 15 years ago
  20. ab4eff6 Make sure value is initialized when built w/o asserts. by Daniel Dunbar · 15 years ago
  21. 2c2d9dc -Wmissing-prototypes shouldn't complain about main() missing a prototype. by Douglas Gregor · 15 years ago
  22. edfa02b Darwin ld: Unconditionally add -lstdc++ if we are pretending to be g++. by Daniel Dunbar · 15 years ago
  23. c9abc04 Make debug info work when using -save-temps. by Daniel Dunbar · 15 years ago
  24. e9352cc Add a destination type argument to EmitConstantExpr. This will be used for when the destination has a reference type. (No functionality change yet) by Anders Carlsson · 15 years ago
  25. 8158a2f Implementation definition of interfaces with __objc_exception attribute. by Daniel Dunbar · 15 years ago
  26. 75c47a5 Pointer width on targets like PIC16 is 16-bit, while the valid index size to GEP is only 32 or 64. So promote index to 32 in such cases. by Sanjiv Gupta · 15 years ago
  27. 837e897 remove fixme! by Chris Lattner · 15 years ago
  28. a27e5fe improve compatibility with VC+, patch by John Thompson! by Chris Lattner · 15 years ago
  29. 899b3de New static analyzer check by Nikita Zhuk! by Ted Kremenek · 15 years ago
  30. 9fd0b1f Set __PIC__ (more) correctly. by Daniel Dunbar · 15 years ago
  31. a17d7cc Don't assume that a block always has a FunctionProtoType. Fixes rdar://6768379. by Anders Carlsson · 15 years ago
  32. 437bb4b Add basic support for arm static analysis checking. Radar 6699395 by Mike Stump · 15 years ago
  33. 82d0068 Driver: Fix forwarding of -fpascal-strings. by Daniel Dunbar · 15 years ago
  34. 93a2595 Fix <rdar://problem/6764172> [sema] crash on invalid. by Steve Naroff · 15 years ago
  35. 03abc9e Visibility attributes should only be set on definition. by Daniel Dunbar · 15 years ago
  36. d573d26 Driver: Fix forwarding of -{std,ansi,trigraphs} when there are by Daniel Dunbar · 15 years ago
  37. 6e460ff Shuffle some call code around. No functionality change. by Anders Carlsson · 15 years ago
  38. 3aaf082 Driver: Forward remaining -f options to clang manually. by Daniel Dunbar · 15 years ago
  39. 2ac9fc2 Driver: Only forward last instance of -mmacosx-version-min= and by Daniel Dunbar · 15 years ago
  40. c8bafd7 Now that we have __weak defined as attribute in all modes, by Fariborz Jahanian · 15 years ago
  41. 48d1ef7 Driver: Manually translate a number of -f with no- variants options to by Daniel Dunbar · 15 years ago
  42. 9af6668 Driver: Add default for ArgList::hasFlag and simplify implementation. by Daniel Dunbar · 15 years ago
  43. 5c27f2b Allow us to ask for the access specifier of a translation unit by Douglas Gregor · 15 years ago
  44. cf71dd4 Propagte -fvisibility to objc2's class symbols. by Fariborz Jahanian · 15 years ago
  45. 85a5319 Diagnose uses of function specifiers on declarations which don't declare by Eli Friedman · 15 years ago
  46. 5c1aaaf Driver: Explicitly warn that -pg isn't supported (even though we by Daniel Dunbar · 15 years ago
  47. 1e23f5f Driver: Add 'q' flag for options which shouldn't be reported as unused. by Daniel Dunbar · 15 years ago
  48. 235c5ed CFG: when there is not continue or break target, mark the CFG as bad. by Ted Kremenek · 15 years ago
  49. 8ac67a7 Remove some dead code. by Anders Carlsson · 15 years ago
  50. ef79bc9 Fixes method name lookup when method appears in by Fariborz Jahanian · 15 years ago
  51. 4ae24e7 Driver: Fix a parsing bug where some options were matched by Daniel Dunbar · 15 years ago
  52. c2ee10d Move the internal DeclContext data structures into a separate header. by Douglas Gregor · 15 years ago
  53. 10d2427 Fariborz points out that weak is now defined to the attribute even in C mode. by Chris Lattner · 15 years ago
  54. ebaa768 Tweak Sema::ActOnInstanceMessage() to look for a class method when dealing with qualified id's. This change is motivated by our desire to not support the "Class<foo>" idiom. Note that the change makes perfect sense (since all ObjC classes are also id/instances). by Steve Naroff · 15 years ago
  55. d9fd764 Change the type of ObjC @ string constants (from NSConstantString->NSString). by Steve Naroff · 15 years ago
  56. 7e075cb Handle use side of __objc_exception__ attribute; when using an by Daniel Dunbar · 15 years ago
  57. 6ab187a Various fixes to symbols used for Obj-C x86_64 metadata. by Daniel Dunbar · 15 years ago
  58. f96f16d Remove hack from LiveVariables analysis where variables whose address are taken by Ted Kremenek · 15 years ago
  59. 2ec926c define __va_copy unconditionally, but va_copy only in c99 or non-ansi mode. by Chris Lattner · 15 years ago
  60. a5770b9 Remove GetLeakNode. This isn't the right approach. by Ted Kremenek · 15 years ago
  61. 0fa9654 Remove period. by Ted Kremenek · 15 years ago
  62. 0b3c9a9 Eagerly compute the leak location when a leak occurs at the end of a path. by Ted Kremenek · 15 years ago
  63. 581329c Removed some commented code. by Ted Kremenek · 15 years ago
  64. 3a5cbd3 The __weak and __strong defines are common to all darwin targets by Chris Lattner · 15 years ago
  65. 90658ec Remove hack support for @try...@finally in source-level CFGs. The current hack by Ted Kremenek · 15 years ago
  66. 16fd3a9 Driver: More verbosity reduction. by Daniel Dunbar · 15 years ago
  67. bfd7c9e PathDiagnostic generation: experiment with avoiding generation of control-flow by Ted Kremenek · 15 years ago
  68. 0002d23 Implement __sync_{add,sub,and,or,xor}_and_fetch and by Daniel Dunbar · 15 years ago
  69. f8544a4 Use the new getFunctionInfo that takes a BlockPointerType parameter, and get rid of getBlockFunctionType from CGBlocks.cpp by Anders Carlsson · 15 years ago
  70. 933c422 retain/release checker: When hunting for the leak location, don't walk the by Ted Kremenek · 15 years ago
  71. e97386f Don't overguard to adding a control-flow piece when "alwaysAdd" is true. by Ted Kremenek · 15 years ago
  72. e2573e5 Warn instead of error on duplicate protocol definitions. by Fariborz Jahanian · 15 years ago
  73. 14856d7 Rewrite control-flow diagnostic generation "extensive" algorithm using "edge by Ted Kremenek · 15 years ago
  74. fea5f5a PathDiagnosticLocation now also wraps Decls. by Ted Kremenek · 15 years ago
  75. fc479d7 Make casting 'super' a deprecated warning (instead of a hard error). by Steve Naroff · 15 years ago
  76. ae8ecdd Fix typo. by Anders Carlsson · 15 years ago
  77. a86b832 Fixed the Fix-It hints for comparison against a string literal. Thanks, Chris! by Douglas Gregor · 15 years ago
  78. 77c9fd2 Fixed visibility issues related to objc2's synthesized ivars. by Fariborz Jahanian · 15 years ago
  79. 5529b24 Add a getFunctionInfo that takes a BlockPointerType. by Anders Carlsson · 15 years ago
  80. 6c247e3 Simplify C++ member function calls. by Anders Carlsson · 15 years ago
  81. 4ca076f Define __OPTIMIZE__ and __OPTIMIZE_SIZE__ if the -O[12] and -Os flags are passed to the compiler. by Anders Carlsson · 15 years ago
  82. 3f41976 Daniel convinced me that accepting "const va_list" arguments to va_arg is by Chris Lattner · 15 years ago
  83. 50efe04 writable property in a category of class's superclass by Fariborz Jahanian · 15 years ago
  84. b02e53b Fix a couple of cases where Constant* pointers can dangle in by Chris Lattner · 15 years ago
  85. 0d20b8a in va_arg diagnostics, print out the unpromoted type. This makes the by Chris Lattner · 15 years ago
  86. f076339 Fix output of ranges in analyzer plist files. by Ted Kremenek · 15 years ago
  87. 9dc8f19 Add a warning for questionable va_args usage. by Chris Lattner · 15 years ago
  88. f502691 GCC compatibility: gcc allows applying va_args to const by Chris Lattner · 15 years ago
  89. ead616c fix rdar://6757323, where an escaped newline in a // comment by Chris Lattner · 15 years ago
  90. 2b77ba8 Add some basic support for generating C++ member functions. by Anders Carlsson · 15 years ago
  91. 348f28a Extend possible handled regparm(N) value by Anton Korobeynikov · 15 years ago
  92. e06dc21 Driver: Handle -dumpversion, this is used by some configuration scripts. by Daniel Dunbar · 15 years ago
  93. 0b46e1b Driver: Handle properly calling dsymutil when source input is by Daniel Dunbar · 15 years ago
  94. 4f53b29 Driver: Automatically suppress warnings for duplicate versions of by Daniel Dunbar · 15 years ago
  95. 1102f42 Basic support for regparm codegen by Anton Korobeynikov · 15 years ago
  96. 264a76c Provide sema proper values of maximal number of arguments passed in registers. by Anton Korobeynikov · 15 years ago
  97. 774e7c6 Add support for calling C++ member functions. by Anders Carlsson · 15 years ago
  98. f6f8ae5 Add a getFunctionInfo that takes a CXXMethodDecl. by Anders Carlsson · 15 years ago
  99. bf4a676 Driver: Add -Qunused-arguments option to suppress driver "unused by Daniel Dunbar · 15 years ago
  100. b072b71 Real corener case of a method declared in a protocol by Fariborz Jahanian · 15 years ago