1. 494bb06 Guard against the return of PR3188 by Sebastian Redl · 16 years ago
  2. 8351da0 Full AST support and better Sema support for C++ try-catch. by Sebastian Redl · 16 years ago
  3. 27b09ac Support conversion from a null pointer constant o any Objective-C object pointer type. Fixes rdar://problem/6463298 by Douglas Gregor · 16 years ago
  4. 669e8d3 Fixed a bug showed up the meta-data for protocol by Fariborz Jahanian · 16 years ago
  5. 4b07b29 Partial AST and Sema support for C++ try-catch. by Sebastian Redl · 16 years ago
  6. 804058e Patch to remove bogus warning in case of @dynamic by Fariborz Jahanian · 16 years ago
  7. cfb664c Expr and Stmt must be destroyed with Destroy, not delete. Fixes PR/3245. by Sebastian Redl · 16 years ago
  8. 398082e Fix test failures noticed by Fariborz. by Anders Carlsson · 16 years ago
  9. a5a4166 Fix initialization order. by Zhongxing Xu · 16 years ago
  10. 2a29dcc Flip the switch and start using the new xmmintrin.h by Anders Carlsson · 16 years ago
  11. 8e28d24 Comment out _mm_insert_pi16 for now by Anders Carlsson · 16 years ago
  12. a6431dc Implement the last intrinsics, _mm_insert_pi16 is the last remaining one now. by Anders Carlsson · 16 years ago
  13. 88a3514 Add support for calls to overloaded member functions. Things to note: by Douglas Gregor · 16 years ago
  14. b595509 Add macros by Anders Carlsson · 16 years ago
  15. 50099cb Add misc intrinsics by Anders Carlsson · 16 years ago
  16. c1f9afd Add control register intrinsics by Anders Carlsson · 16 years ago
  17. 62af71c Add integer intrinsics by Anders Carlsson · 16 years ago
  18. 4ee51b4 Generate code for __builtin_ia32_pshufw by Anders Carlsson · 16 years ago
  19. dedad4e Add cacheability intrinsics by Anders Carlsson · 16 years ago
  20. 09b9305 Add store intrinsics by Anders Carlsson · 16 years ago
  21. a6ba001 Add set intrinsics by Anders Carlsson · 16 years ago
  22. 9770086 Add load intrinsics by Anders Carlsson · 16 years ago
  23. ff944a8 Add an option to make 'RemoveDeadBindings' a configurable behavior. This enables by Zhongxing Xu · 16 years ago
  24. 1b76b80 _mm_cvtsi64_ss is 64-bit only, so wrap it in #ifdef __x86_64__ by Anders Carlsson · 16 years ago
  25. 4fcc313 Add a couple of conversion intrinsics by Anders Carlsson · 16 years ago
  26. f62c681 Add comparison intrinsics. by Anders Carlsson · 16 years ago
  27. 566d8da Check in an in-progress version of xmmintrin.h that I had lying around. by Anders Carlsson · 16 years ago
  28. 3f70456 Add codegen support for __null by Anders Carlsson · 16 years ago
  29. a89d82c Fix a comment. by Sebastian Redl · 16 years ago
  30. a0fd865 Parser support for C++ try-catch. by Sebastian Redl · 16 years ago
  31. c994bb2 Correct comments. by Zhongxing Xu · 16 years ago
  32. e3f38ea Test case makes a platform assumption, so force triple. by Sebastian Redl · 16 years ago
  33. a60528c Convert a few Stmt actions to smart pointers. by Sebastian Redl · 16 years ago
  34. 7886ce8 Document how move semantics and the emulation work. Do this in-file because it's such a specific thing. by Sebastian Redl · 16 years ago
  35. 8ce6666 fix 80-col violation. by Zhongxing Xu · 16 years ago
  36. 4a1424f Implement alignof for vla types. by Anders Carlsson · 16 years ago
  37. 47b3240 Use utility method. by Zhongxing Xu · 16 years ago
  38. 6183a99 Add ASTContext::getBaseElementType and use it in CodeGenFunction::EmitArraySubscriptExpr. by Anders Carlsson · 16 years ago
  39. 0269709 Commit the right version of the test by Anders Carlsson · 16 years ago
  40. b50525b Make sure to emit the size expression for sizeof(type) by Anders Carlsson · 16 years ago
  41. 56a3460 Use utility methods. No functional change. by Zhongxing Xu · 16 years ago
  42. a90dce3 Remove unused function. by Zhongxing Xu · 16 years ago
  43. ccf614c Fix for PR3246: an empty clobber list is the empty string, not a null string. by Eli Friedman · 16 years ago
  44. 97e0179 Did not mean to commit this. by Anders Carlsson · 16 years ago
  45. 8b33c08 Handle VLA indexing by Anders Carlsson · 16 years ago
  46. 86f1940 Add support for member references (E1.E2, E1->E2) with C++ semantics, by Douglas Gregor · 16 years ago
  47. 4306d3c Finish up saving original parameter type and by Fariborz Jahanian · 16 years ago
  48. 20c802b Extend the unsupported error to include break and continue, and fix a by Eli Friedman · 16 years ago
  49. 8f39f5e Make VLAs usable, and make basic usage work correctly. Also, add a by Eli Friedman · 16 years ago
  50. fcdbb93 Handle typedefs to VLAs (Emit the size expr when we encounter the typedef by Anders Carlsson · 16 years ago
  51. 7e63b85 Check the entire StackSaveValues stack for VLAs when dealing with goto and return statements. Noticed by Eli Friedman. by Anders Carlsson · 16 years ago
  52. 751358f Make sure to generate code for arguments that have a variably modified type. by Anders Carlsson · 16 years ago
  53. 4f5420d Add case for the new AST node. by Fariborz Jahanian · 16 years ago
  54. 73da9e4 introducing ParmVarWithOriginalTypeDecl class to by Fariborz Jahanian · 16 years ago
  55. 60d3541 Change EmitVLASize to take a QualType that must be a variably modified type. by Anders Carlsson · 16 years ago
  56. f666b77 Split up emitting of VLA sizes and getting the size of a VLA. by Anders Carlsson · 16 years ago
  57. eb91f0e Add some ErrorUnsupported calls and turn on VLA codegen again. by Anders Carlsson · 16 years ago
  58. adcaf54 Strangely enough, name of ObjC class is not encoded into the by Fariborz Jahanian · 16 years ago
  59. e6d5a4a Implement checks for bool in increment and decrement. by Sebastian Redl · 16 years ago
  60. 4193eca Lazy bingding for region-store manager. by Zhongxing Xu · 16 years ago
  61. 848b34b Updated checker build. by Ted Kremenek · 16 years ago
  62. 3ddc4d5 Fix <rdar://problem/6454568>: BugReporter should correctly handle switch statements with no default case. by Ted Kremenek · 16 years ago
  63. e36dabb avoid using a typedef that isn't always included from headers. by Chris Lattner · 16 years ago
  64. 43822ea More encoding support. This time for @encode of classes and bitfields. by Fariborz Jahanian · 16 years ago
  65. 1c0cfd4 Get rid of the old Expr::Evaluate variant. by Anders Carlsson · 16 years ago
  66. 06c58b1 Pass -fblocks to clang by Anders Carlsson · 16 years ago
  67. a46969d Add a missing @end. Why didn't this get diagnosed? by Douglas Gregor · 16 years ago
  68. c788751 Support more implicit conversions for Objective-C types. Addresses <rdar://problem/6458293>. by Douglas Gregor · 16 years ago
  69. e4bb68a Test case for my last @encode patch. by Fariborz Jahanian · 16 years ago
  70. 45920e8 Allow downcasts of pointers to Objective-C interfaces, with a by Douglas Gregor · 16 years ago
  71. 00165a2 Fix for PR3234 by Anders Carlsson · 16 years ago
  72. 19bdedb Updated checker build. by Ted Kremenek · 16 years ago
  73. c166d73 Several@encode bug fixes for ObjC. by Fariborz Jahanian · 16 years ago
  74. 730165d Update Xcode project. by Ted Kremenek · 16 years ago
  75. dda7889 Add some more implicit conversions for Objective-C++ by Douglas Gregor · 16 years ago
  76. 784606f Added test case for suppressing leak warnings for reference-counted objects passed by-reference to an unknown function. by Ted Kremenek · 16 years ago
  77. 40e86d9 Fix regression when invalidating reference-counts for objects passed-by-reference to a function/method. by Ted Kremenek · 16 years ago
  78. 7e0fbb2 Don't define __STDC__ when compiling with -fms-extensions by Steve Naroff · 16 years ago
  79. 264c8ed Don't check initializers when there are dependent types or type-dependent expressions involved by Douglas Gregor · 16 years ago
  80. d6fb7ef Ultrasimplistic sketch for the parsing of C++ template-ids. This won't by Douglas Gregor · 16 years ago
  81. 80d2f30 Use '&' to test StartOfLine flag. by Ted Kremenek · 16 years ago
  82. efc4c4b Removed a slot in ObjCMemRegExpr used in code gen which did not belong there. by Fariborz Jahanian · 16 years ago
  83. d8df682 Fix http://llvm.org/bugs/show_bug.cgi?id=3189. by Steve Naroff · 16 years ago
  84. 378c7e4 add a simple fast-path for the common case of [] and [4] in by Chris Lattner · 16 years ago
  85. 85b5a45 rename argument by Chris Lattner · 16 years ago
  86. 5a69d1c disallow attributes in a few callers of ParseTypeQualifierListOpt, by Chris Lattner · 16 years ago
  87. a1fcbad Clean up the C89/C++ warnings about C99 array features to not by Chris Lattner · 16 years ago
  88. 62b5857 Add method used by ImmutableMap GDM specialization. by Zhongxing Xu · 16 years ago
  89. 3aea8ca Allow ABI to use StructRet even for scalar values. by Daniel Dunbar · 16 years ago
  90. e878eb0 This is valid in C++. void foo() { return foo(); } by Chris Lattner · 16 years ago
  91. 65ce04b Merge function-return.c into function.c by Chris Lattner · 16 years ago
  92. bc8d564 implement PR3177 - "__extension__ union" not supported in C++ mode by Chris Lattner · 16 years ago
  93. e604628 Updated checker build. by Ted Kremenek · 16 years ago
  94. 74c3e6e Rewrite PTHLexer::DiscardToEndOfLine() to not use GetToken and instead only read the bytes needed to determine if a token is not at the start of the line. by Ted Kremenek · 16 years ago
  95. 99f06ba fix leakage of var's initializers by Nuno Lopes · 16 years ago
  96. 30a12ec Change PTHLexer::getSourceLocation() to not call GetToken() and instead just read the file offset in the token data buffer directly. by Ted Kremenek · 16 years ago
  97. daeee81 PTHLexer::isNextPPTokenLParen() no longer calls GetToken() and just reads the token kind from the token data buffer. This results in a minor speedup and reduces the dependency on GetToken(). by Ted Kremenek · 16 years ago
  98. 9103bb2 Delay semantic analysis of the C++ names casts when the subexpression is type-dependent or the destination type is dependent. by Douglas Gregor · 16 years ago
  99. b74668e fix a few more memory leaks: clean the ASTRecordLayouts, ASTObjCInterfaces and ASTRecordForInterface maps by Nuno Lopes · 16 years ago
  100. 5f76494 Oops, accidentally commited the wrong version of the test (original by Eli Friedman · 16 years ago