1. 1df5109 Revert r78535, it is causing a number of failures to build projects. by Daniel Dunbar · 15 years ago
  2. 76168e2 map previously ignored __attribute((malloc)) to noalias attribute of llvm function's return by Ryan Flynn · 15 years ago
  3. 25b4fdb AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d); by Nate Begeman · 15 years ago
  4. a860e75 Introduce a new PragmaPack attribute, and use it for #pragma pack. The PackedAttr now only represents __attribute__((packed)). by Anders Carlsson · 15 years ago
  5. fee1381 Patch should implement packed enums - PR4098. Credit to Anders Johnsen. by Edward O'Callaghan · 15 years ago
  6. 43d9d92 Introduce reference counting for statements and expressions, using it by Douglas Gregor · 15 years ago
  7. ef888a4 add support for opensuse 11.1/11.2 search paths, patch by Stefan Reinauer by Chris Lattner · 15 years ago
  8. 36dd131 Predefine __cplusplus to the right value (199711L), except when in GNU mode. by Douglas Gregor · 15 years ago
  9. fe85ced Support nested-name-specifiers for C++ member access expressions, e.g., by Douglas Gregor · 15 years ago
  10. c5619d9 As GRState seems general enough, it is time to merge some template classes by Zhongxing Xu · 15 years ago
  11. 50d62d1 Introduce the canonical type smart pointers, and use them in a few places to by Douglas Gregor · 15 years ago
  12. 2b1f59f Update for LLVM API change by Daniel Dunbar · 15 years ago
  13. 9b4d45c Emit a special 'BUGMETAEND' comment to aid in the postprocessing of HTML bug reports. by Ted Kremenek · 15 years ago
  14. 9ab76fa Update for LLVM API change. by Daniel Dunbar · 15 years ago
  15. b0f17c7 Update for LLVM API change. by Daniel Dunbar · 15 years ago
  16. d07a0d0 now we can let AnalysisManager to own the PathDiagnosticClient. by Zhongxing Xu · 15 years ago
  17. c471e7b Create only one AnalysisManager for each translation unit. In HandleCode(), by Zhongxing Xu · 15 years ago
  18. 690a7f4 Fix regression caused by recent refactoring where HTML and plist files would not get flushed out when using '-disable-free'. by Ted Kremenek · 15 years ago
  19. 2ef398c Additional AuroraUX header path. by Eli Friedman · 15 years ago
  20. 868d016 Add temp C++ include path for AuroraUX; patch by Edward O'Callaghan. by Eli Friedman · 15 years ago
  21. 0f434ec Rename Action::TagKind to Action::TagUseKind, which removes both a misnomer by John McCall · 15 years ago
  22. cdef2b7 Add a CastKind enum to CastExpr. Right now it's not used for much but it will be :) by Anders Carlsson · 15 years ago
  23. 82ec2e9 Fix use-after-release bug introduced in r77585 where the PathDiagnosticClient by Ted Kremenek · 15 years ago
  24. 17edea8 Initialize an otherwise-wild pointer. Fixes a crashy analyzer by Douglas Gregor · 15 years ago
  25. 7d49c71 simple fixes. by Zhongxing Xu · 15 years ago
  26. fda7832 Make AnalysisManager into its own source file and a pure data management class. by Zhongxing Xu · 15 years ago
  27. 97ab394 This patch collects all analysis context data into a new class AnalysisContext. by Zhongxing Xu · 15 years ago
  28. 8e9e9ef Make tag declarations redeclarable. This change has three purposes: by Douglas Gregor · 15 years ago
  29. 6217b80 Change uses of: by Ted Kremenek · 15 years ago
  30. 12e85fc Don't use a formatted ostream when writing .ll either. by Daniel Dunbar · 15 years ago
  31. 8c01cad Don't use a formatted ostream when writing .bc files. I don't really understand by Daniel Dunbar · 15 years ago
  32. 3c41544 Add missing '"' by Daniel Dunbar · 15 years ago
  33. 782fa30 Make longjmp a real builtin. by Mike Stump · 15 years ago
  34. f755606 (1) Enable PlistDiagnostics to take an option "PathDiagnosticClientFactory" by Ted Kremenek · 15 years ago
  35. aecae62 Make ObjCImplDecl inherit from ObjCContainerDecl. by Argyrios Kyrtzidis · 15 years ago
  36. ec9fd76 add gentoo 2009.0 g++ header locations by Nuno Lopes · 15 years ago
  37. b2abd06 Update for API change. by Daniel Dunbar · 15 years ago
  38. 82cfa7a Lookup targets by Triple instead of Module. by Daniel Dunbar · 15 years ago
  39. f242b1b Allow front-end 'isa' access on object's of type 'id'. by Steve Naroff · 15 years ago
  40. bd1099e Clean up the ActOnTag action, so that there is only a single entry by Douglas Gregor · 15 years ago
  41. dbfb5f8 Add initial implementation of checking for uses of floating point as a loop counter. by Ted Kremenek · 15 years ago
  42. 741dd9a Add the location of the tag keyword into TagDecl. From Enea by Douglas Gregor · 15 years ago
  43. 07ef804 define __STDC_VERSION__ processor token for c94 by Ryan Flynn · 15 years ago
  44. 1cb35dd Remove the ObjCCategoryImpls vector from Sema class. by Argyrios Kyrtzidis · 15 years ago
  45. e5af3ce Add yet more analysis for CFGs involving conditionals that are actually constant. by Mike Stump · 15 years ago
  46. 75f1af0 Reuse VarDecl::Init to store the default argument of a ParmVarDecl, by Douglas Gregor · 15 years ago
  47. c15cb2a Remove ObjCQualifiedInterfaceType:-) by Steve Naroff · 15 years ago
  48. 0899621 Fix a comment. by Zhongxing Xu · 15 years ago
  49. c999f1f Location should be passed to setLocEnd() not to setAtEndLoc() which belongs to ObjCContainerDecl. by Argyrios Kyrtzidis · 15 years ago
  50. 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 15 years ago
  51. 5cad1f7 Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents. by Ted Kremenek · 15 years ago
  52. 1a1a6e2 Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. by Ted Kremenek · 15 years ago
  53. e41611a Move the source-level CFG from libAST to libAnalysis. by Ted Kremenek · 15 years ago
  54. b3b7364 Lexically order files in CMakeLists.txt files. by Ted Kremenek · 15 years ago
  55. f7d47c0 Reapply r75764: [llvm up] Switch to using the new TargetRegistry by Daniel Dunbar · 15 years ago
  56. 93b3326 Revert r75764 "[llvm up] Switch to using the new TargetRegistry" to fix build. by Argyrios Kyrtzidis · 15 years ago
  57. de2e22d Implement the ObjC pseudo built-in types as clang "BuiltinType's". I say pseudo built-in types, since Sema still injects a typedef for recognition (i.e. they aren't truly built-ins from a parser perspective). by Steve Naroff · 15 years ago
  58. 92db284 Update for raw_fd_ostream API changes. raw_fd_ostream now has a by Dan Gohman · 15 years ago
  59. 0dcf11a [llvm up] Switch to using the new TargetRegistry. by Daniel Dunbar · 15 years ago
  60. 03eacc7 fix fallout of the LLVM codegen switching to formatted_raw_ostream. by Chris Lattner · 15 years ago
  61. ea218b8 Add a "TypeSpecStartLoc" to FieldDecl. Patch contributed by Enea Zaffanella. by Steve Naroff · 15 years ago
  62. f5c209d Basic support for C++0x unicode types. Support for literals will follow in an incremental patch by Alisdair Meredith · 15 years ago
  63. ba0a900 Read/write a CXXOperatorCallExpr from/to PCH files. by Argyrios Kyrtzidis · 15 years ago
  64. ad93a74 Read/write TagDecl's RBraceLoc from/to PCH files. by Argyrios Kyrtzidis · 15 years ago
  65. 14108da This patch includes a conceptually simple, but very intrusive/pervasive change. by Steve Naroff · 15 years ago
  66. 643b7df Patch adds test to my previous patch for assigning to by Fariborz Jahanian · 15 years ago
  67. c29f77b Make ASTContext explicitly keep track of the declaration for the C by Douglas Gregor · 15 years ago
  68. e650c8c Introduce the notion of "Relocatable" precompiled headers, which are built by Douglas Gregor · 15 years ago
  69. 0daea7a Update CMake files. by Argyrios Kyrtzidis · 15 years ago
  70. 818e15b Move the 'ResolveLocationInAST' function from the Frontend library to the Index library. by Argyrios Kyrtzidis · 15 years ago
  71. ccbcb70 Move ASTLocation and DeclReferenceMap from the AST library to the Index library. by Argyrios Kyrtzidis · 15 years ago
  72. 874012b Rename 'ASTNode' -> 'ASTLocation'. by Argyrios Kyrtzidis · 15 years ago
  73. d89275b Fix PR 4489, a crash in PCH loading that occurs when loading the name by Douglas Gregor · 15 years ago
  74. 7e7eb3d Keep track of the Expr used to describe the size of an array type, by Douglas Gregor · 15 years ago
  75. 07796e1 Avoid re-checking the parameters of a function, when trying to resolve a location. by Argyrios Kyrtzidis · 15 years ago
  76. 49dd585 Make use of ASTNode for return value of clang::ResolveLocationInAST() and in the index-test tool. by Argyrios Kyrtzidis · 15 years ago
  77. 685477f Do an early check for function definition. by Argyrios Kyrtzidis · 15 years ago
  78. 2e22253 Add support for retrieving the Doxygen comment associated with a given by Douglas Gregor · 15 years ago
  79. ae4df62 Fix PR 4489, a PCH crash during de-serialization. by Douglas Gregor · 15 years ago
  80. 8f1ca78 Update for changes in LLVM. Hopefully this is the last one for a while. by Owen Anderson · 15 years ago
  81. c93f498 Hold the LLVMContext by reference instead of by pointer. by Owen Anderson · 15 years ago
  82. 4d374d4 Add header search path for Gentoo stable, x86_64 version. by Sebastian Redl · 15 years ago
  83. 42253cc Update for LLVMContext+Module change. by Owen Anderson · 15 years ago
  84. 3c7b6e4 Fix for PR4192: fix the definition of int64_t on x86_64 Linux. by Eli Friedman · 15 years ago
  85. 51bbd1b remove dead code. by Zhongxing Xu · 15 years ago
  86. 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 15 years ago
  87. 6fb0aee Remove the ASTContext parameter from the getBody() methods of Decl and subclasses. by Argyrios Kyrtzidis · 15 years ago
  88. f1d60ea Remove the ASTContext parameter from the printing related methods of Decl. by Argyrios Kyrtzidis · 15 years ago
  89. 40b598e Remove the ASTContext parameter from the attribute-related methods of Decl. by Argyrios Kyrtzidis · 15 years ago
  90. e4f2142 Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions. by Chris Lattner · 15 years ago
  91. 4ebe3e4 Make the StackProtector bitfield use enums instead of obscure numbers. by Bill Wendling · 15 years ago
  92. 45483f7 Add stack protector support to clang. This generates the 'ssp' and 'sspreq' by Bill Wendling · 15 years ago
  93. e89d159 Implement enough of the 'auto' keyword so we can claim to support N2546. by Anders Carlsson · 15 years ago
  94. 6f3d838 OpenCL 1.0 support: attributes by Nate Begeman · 15 years ago
  95. 6c07bdb Introduce a new concept to the static analyzer: SValuator. by Ted Kremenek · 15 years ago
  96. b9e7e63 Write/Read new Language Options by Nate Begeman · 15 years ago
  97. 69cfb9b PCH support for OpenCL language options by Nate Begeman · 15 years ago
  98. 53d4c14 Introduce the ResolveLocationInAST function which takes an ASTContext and a SourceLocation and it resolves it into a <Decl*, Stmt*> pair. by Argyrios Kyrtzidis · 15 years ago
  99. 106c998 Handle PCHReader::IgnorePCH, it gets returned for when the file does not exist. by Argyrios Kyrtzidis · 15 years ago
  100. f391e09 Add missing dependencies to the CMake build system by Douglas Gregor · 15 years ago