1. 8147c7b Renamed selactor-expr-lvalue.mm to selector-expr-lvalue.mm. Thanks Daniel D. by Fariborz Jahanian · 14 years ago
  2. 0c2e8c8 Add check for illegal whence argument of fseek. by Zhongxing Xu · 14 years ago
  3. 7197d40 Don't depend on system headers in clang -cc1 tests. by Benjamin Kramer · 14 years ago
  4. 8dfbd8b Support a couple more C++ Exprs for PCH. by Argyrios Kyrtzidis · 14 years ago
  5. 5e1b7c2 Fix broken de/serialization for a couple of C++ Exprs. by Argyrios Kyrtzidis · 14 years ago
  6. 564360b Patch to correctly mangle block helper functions by Fariborz Jahanian · 14 years ago
  7. 1860dc4 Revert "Tweak tests to hopefully fix include of limits.h on win32.", tweak fails on linux. by Daniel Dunbar · 14 years ago
  8. 448278a Add USR tests for ObjC class extensions. by Ted Kremenek · 14 years ago
  9. e9b5392 Tweak tests to hopefully fix include of limits.h on win32. by Daniel Dunbar · 14 years ago
  10. dd41c14 Support C++ class template specializations and partial specializations for PCH. by Argyrios Kyrtzidis · 14 years ago
  11. 788b0fd improve altivec vector bool/pixel support, patch by Anton Yartsev by Chris Lattner · 14 years ago
  12. 3f8612b Correctly construct an ElementRegion for alloca() + pointer arithmetic. Fixes analyzer by Ted Kremenek · 14 years ago
  13. 1984eb9 String literals enclosed in parentheses are still string literals. Fixes PR7488. by Douglas Gregor · 14 years ago
  14. 0061962 Vector types are not arithmetic types, either. Note that we now ban by Douglas Gregor · 14 years ago
  15. 80aa1cd Patch to provide separate ASTs for multiple ObjC class extension by Fariborz Jahanian · 14 years ago
  16. 4b13172 Teach Type::isRealType() that vector types are never real types. All by Douglas Gregor · 14 years ago
  17. 0c293ea Type Type::isRealFloatingType() that vectors are not floating-point by Douglas Gregor · 14 years ago
  18. 08fd376 Trying to make BuildBot happy again (related to PR7431). by Fariborz Jahanian · 14 years ago
  19. 95fc98c Read/write CXXDeleteExpr from/to PCH. by Argyrios Kyrtzidis · 14 years ago
  20. 7c5b109 Don't allow vector conversions to sneak in under the guise of by Douglas Gregor · 14 years ago
  21. 6afbdf5 Fixes a problem in generation of meta-data for by Fariborz Jahanian · 14 years ago
  22. f3a7b7c In C++, allow a declaration of an enum to follow a definition of that by Douglas Gregor · 14 years ago
  23. 661c36b Fix PR7180. by Argyrios Kyrtzidis · 14 years ago
  24. f511ba6 Support emitting/reading function templates to/from PCH. by Argyrios Kyrtzidis · 14 years ago
  25. 83c9abc Apply array-to-pointer decay when instantiating a MemberExpr. Fixes by Douglas Gregor · 14 years ago
  26. cd9fb98 Attempt to fix test by Douglas Gregor · 14 years ago
  27. 7255a2d implement support for -finstrument-functions, patch by Nelson Elhage! by Chris Lattner · 14 years ago
  28. f28682a Test case for PR7431 by Nico Weber. by Fariborz Jahanian · 14 years ago
  29. 45f9b7e Bug 7377: printf checking fails to flag some undefined behavior by Tom Care · 14 years ago
  30. 7e70fb2 Fix an Obj-C++ miscompile when calling an Obj-C method that returns a C++ reference. by Anders Carlsson · 14 years ago
  31. 9a14084 Add CXType support for querying the return type of Objective-C methods. This is done by by Ted Kremenek · 14 years ago
  32. 04c3cf3 Add CXType support for FunctionNoProto and FunctionProto types. This includes adding a new by Ted Kremenek · 14 years ago
  33. b4954a4 When folding additive operations, convert the values to the same type. When assuming relationships, convert the integers to the same type as the symbol, at least for now. by Jordy Rose · 14 years ago
  34. 9a12685 If a nonnull argument evaluates to UnknownVal, don't warn (and don't crash). by Jordy Rose · 14 years ago
  35. 0d32a68 Add clang_getCursorType() support for @property declarations. by Ted Kremenek · 14 years ago
  36. af89689 Instantiations subject to an explicit template instantiation by Douglas Gregor · 14 years ago
  37. 2bf6d7b Fixes a corner case bug whereby declaring and defining an extern variable in a by Fariborz Jahanian · 14 years ago
  38. b01a552 Support PCH emitting/reading of using declarations. by Argyrios Kyrtzidis · 14 years ago
  39. 43fdb7f Adds analyzer support for idempotent and tautological binary operations such as "a*0" and "a+0". This is not very powerful, but does make the analyzer look a little smarter than it actually is. by Jordy Rose · 14 years ago
  40. c580f2e Casting to void* or any other pointer-to-sizeless type (e.g. function pointers) causes a divide-by-zero error. Simple fix: check if the pointee type size is 0 and bail out early if it is. by Jordy Rose · 14 years ago
  41. 28d16d7 Include a hack to allow loading of templated CXXRecordDecls and test template reading from PCH. by Argyrios Kyrtzidis · 14 years ago
  42. 90b715e Initial support for writing templates to PCH. by Argyrios Kyrtzidis · 14 years ago
  43. 4d3a7b0 More AltiVec support. Patch by Anton Yartsev! by Anton Korobeynikov · 14 years ago
  44. 61c6c91 Fix for PR7415: refactor CodeGenModule::MayDeferGeneration and make it less by Eli Friedman · 14 years ago
  45. 810112e Fix PR7097, a bad interaction between -fno-use-cxa-atexit and by Chris Lattner · 14 years ago
  46. b9d5c22 More Sema Check and a test case for init_priority attr. (radar 8076356). by Fariborz Jahanian · 14 years ago
  47. ba0f61c Fold additive constants, and support comparsions of the form $sym+const1 <> const2 by Jordy Rose · 14 years ago
  48. 8e19890 Don't complain about missing field initializers when the initializer by Douglas Gregor · 14 years ago
  49. d2c6490 Merge the "regparm" attribute from a previous declaration of a by Douglas Gregor · 14 years ago
  50. c62458f Mangle tag types (unions, structs, classes, enums) in the Microsoft C++ Mangler. by Charles Davis · 14 years ago
  51. 4c60219 Printf format strings: Added some more tests and fixed some minor bugs. by Tom Care · 14 years ago
  52. 23d90f9 Add null stream check for more APIs. by Zhongxing Xu · 14 years ago
  53. c070cc6 Given Decl::isUsed() a flag indicating when to consider the "used" by Douglas Gregor · 14 years ago
  54. 353b33b objective-C++ IRGen: property reference as an by Fariborz Jahanian · 14 years ago
  55. 949bd4b Do not treat @selector as lvalue (unlike g++). Patch by Nico Weber (pr7390). by Fariborz Jahanian · 14 years ago
  56. 03b2960 Objective-c++ IRGen. Support for @selector expression as by Fariborz Jahanian · 14 years ago
  57. e4ee966 Bug 7377: Fixed several bad printf format string bugs. by Tom Care · 14 years ago
  58. e2872d0 When pushing a copy of the TypeLoc information for a dependent by Douglas Gregor · 14 years ago
  59. 21e2a7e Mangle operator names in the Microsoft C++ Mangler. by Charles Davis · 14 years ago
  60. a816615 Tweak stack address checker to report multiple cases where globals may reference stack memory. by Ted Kremenek · 14 years ago
  61. 01cb1aa Fix format string checking of '%c' by treating it as an integer conversion. Fixes PR 7391. by Ted Kremenek · 14 years ago
  62. 551bd1f Rework StackAddrLeakChecker to find stores of stack memory addresses to global variables by Ted Kremenek · 14 years ago
  63. e0cc047 When parsing cached C++ method declarations/definitions, save the by Douglas Gregor · 14 years ago
  64. f13ca06 Make the "extra ';' inside a struct or union" diagnostic more by Douglas Gregor · 14 years ago
  65. d6ab232 When we see a 'template' disambiguator that marks the next identifier by Douglas Gregor · 14 years ago
  66. 1a15dae Fix the recently-added warning about 'typename' and 'template' by Douglas Gregor · 14 years ago
  67. 13927a4 Extend format string type-checking to include '%p'. Fixes remaining cases PR 4468. by Ted Kremenek · 14 years ago
  68. 3e1274f Canonicalize template template parameters when canonicalizing a by Douglas Gregor · 14 years ago
  69. 65d7285 tests: Update Frontend config to actually run ir-support tests. by Daniel Dunbar · 14 years ago
  70. 1ed1a59 Change the test for which ABI/CC to use on ARM to be base on the environment by Rafael Espindola · 14 years ago
  71. d426662 Make sure result type of objc++ message expression is by Fariborz Jahanian · 14 years ago
  72. 0a184d3 A a new test for my previous patch. by Rafael Espindola · 14 years ago
  73. 75d0f82 Fix tests that I missed from my previous commit. by Rafael Espindola · 14 years ago
  74. d27e50c Don't poke at an undefined class type of a field. Fixes PR7355. by Douglas Gregor · 14 years ago
  75. a2dd828 Downgrade the error when using a typedef in the nested-name-specifier by Douglas Gregor · 14 years ago
  76. 3956b1a If a non-dependent base class initializer fails to match any direct or by Douglas Gregor · 14 years ago
  77. 52a0275 Fix the build. Using declarations should not be considering when looking by John McCall · 14 years ago
  78. ad00b77 Fix a point of semantics with using declaration hiding: method templates by John McCall · 14 years ago
  79. c196095 Add StreamChecker. This checker models and checks stream manipulation functions. by Zhongxing Xu · 14 years ago
  80. 65161d1 Start mangling function types in the Microsoft C++ Mangler. by Charles Davis · 14 years ago
  81. 2a71107 Moved objective-c++ code gen. tests to their own directory and by Fariborz Jahanian · 14 years ago
  82. 55bcace Patch adds support for copying of those by Fariborz Jahanian · 14 years ago
  83. 6e5122c Update equality and relationship comparisons of pointers to reflect by Douglas Gregor · 14 years ago
  84. 9b30b26 Teach code completion not to ignore data members when performing code by Douglas Gregor · 14 years ago
  85. d5ef4fa add a testcase, from Michael Spencer by Chris Lattner · 14 years ago
  86. 37dd3ec Remove a dead argument to ProcessUCNEscape. by Chris Lattner · 14 years ago
  87. 7cf84d6 Implement -fvisibility-inlines-hidden. <rdar://problem/7819834> by Douglas Gregor · 14 years ago
  88. 2f7ea3d Fix typo. by Benjamin Kramer · 14 years ago
  89. fcd783d Change AnalysisConsumer to analyze functions created by instantiantiating a macro. Fixes PR 7361. by Ted Kremenek · 14 years ago
  90. c66bcfd Make sure to set the visible on a vtable; VTTs and typeinfo already by Douglas Gregor · 14 years ago
  91. 56079f7 Add name mangling for address spaces. We use the vendor-extension by Douglas Gregor · 14 years ago
  92. 732281d Warn when a 'typename' or a 'template' keyword refers to a by Douglas Gregor · 14 years ago
  93. eda3f70 Driver: Fix PR4062 by dissecting one particular -Wp, form. by Daniel Dunbar · 14 years ago
  94. f78925f Driver: Dissect -Wl, and -Xlinker arguments to remove --no-demangle, which was a by Daniel Dunbar · 14 years ago
  95. a6cebab Enable basic testing of __builtin_fpclassify. by Benjamin Kramer · 14 years ago
  96. b021f8b Microsoft C++ Mangler: by Charles Davis · 14 years ago
  97. e656325 Allow an asm label specifier on C++ methods, like GCC does. by Chris Lattner · 14 years ago
  98. 6133aeb fix PR7360: -P mode turns off line markers, but not blank space. by Chris Lattner · 14 years ago
  99. 570d276 Microsoft C++ Mangler: by Charles Davis · 14 years ago
  100. 6907fbe When deciding whether an expression has the boolean nature, don't look through by John McCall · 14 years ago