1. 2a28c7b Check if the environment variable TERM is defined before using it. by Ted Kremenek · 16 years ago
  2. 6ddf360 Update Xcode project. by Ted Kremenek · 16 years ago
  3. 31325c1 Fix <rdar://problem/6210791> clang ObjC rewriter: @try / @catch block with no @finally does not call objc_exception_try_exit. by Steve Naroff · 16 years ago
  4. ab5f114 bool is not an extension in C++ by Douglas Gregor · 16 years ago
  5. 75d8673 Make sure to store the exception in the catch parameter. by Anders Carlsson · 16 years ago
  6. 1f4acc3 Make sure to emit the catch parameter as well as the catch body. by Anders Carlsson · 16 years ago
  7. a451917 Fix stupid mistake I made in the exception handling code by Anders Carlsson · 16 years ago
  8. c362d38 Do implicit conversion to bool for the condition in a do-while statement. by Argiris Kirtzidis · 16 years ago
  9. 8d36abb Fix do-while scoping in C++. by Argiris Kirtzidis · 16 years ago
  10. f580b4d Allow array-to-pointer conversion for rvalues. by Argiris Kirtzidis · 16 years ago
  11. c821c86 CXXConditionDeclExpr expression node is an lvalue. by Argiris Kirtzidis · 16 years ago
  12. b151955 LangOptions.C99 should be false in C++. by Argiris Kirtzidis · 16 years ago
  13. fd8d65d Revert r56078, getLang().C99 being true in C++ is a bug that will be fixed. by Argiris Kirtzidis · 16 years ago
  14. 6293fd1 Add support for expected-note to Clang's -verify option by Douglas Gregor · 16 years ago
  15. 22e3005 Use ABIArgInfo for decisions about function arguments (not just return by Daniel Dunbar · 16 years ago
  16. 7776e10 Fix two bugs exposed by array passing assert: by Daniel Dunbar · 16 years ago
  17. 6e4dec4 Add ObjCMethodDecl::getSourceRange. by Daniel Dunbar · 16 years ago
  18. 2298f01 Fold Parser::ParseTag into Parser::ParseEnumSpecifier, as suggested in this post: by Argiris Kirtzidis · 16 years ago
  19. 753d110 Bug fix, apply default argument promotion in message sends for which by Daniel Dunbar · 16 years ago
  20. 842b5e2 Refactor common Obj-C message send checking code into by Daniel Dunbar · 16 years ago
  21. a8e14d8 -getLang().C99 is true in C++ too, remove the use of the C99orCXX variable. by Argiris Kirtzidis · 16 years ago
  22. c4e1e45 In the 'condition.cpp' test case, make sure that condition declarations are local to the statement. by Argiris Kirtzidis · 16 years ago
  23. 32c5304 Add XFAIL test case for: by Daniel Dunbar · 16 years ago
  24. 3eac769 More semantic analysis for blocks... by Steve Naroff · 16 years ago
  25. 4d1b93d Sema::ActOnIdentifierExpr(): Lookup block arguments. by Steve Naroff · 16 years ago
  26. 7c4be86 Add some C++-specific comments in the parsing methods of if/switch/while/for. by Argiris Kirtzidis · 16 years ago
  27. 73d6660 Implement ABIArgType::Coerce support. by Daniel Dunbar · 16 years ago
  28. a9976a2 Add CodeGenTypes::GetFunctionType overload for getting the effective by Daniel Dunbar · 16 years ago
  29. 3ad1f07 Move FunctionType conversion into CGCall.cpp: by Daniel Dunbar · 16 years ago
  30. e126ab1 Add ABIArgInfo class to encapsulate ABI decision of how to lower types by Daniel Dunbar · 16 years ago
  31. bf615b0 Implement CodeGen support for the 'CXXConditionDeclExpr' expression node, which represents a 'condition' declaration, e.g: "if (int x=0) {...}". by Argiris Kirtzidis · 16 years ago
  32. 810c0f7 Implement Sema support for the 'condition' part of C++ selection-statements and iteration-statements (if/switch/while/for). by Argiris Kirtzidis · 16 years ago
  33. 080b9cc Change line endings: CRLF -> LF by Argiris Kirtzidis · 16 years ago
  34. ad9de13 Use Sema::isDeclInScope instead of IdentifierResolver::isDeclInScope. by Argiris Kirtzidis · 16 years ago
  35. 3ef2e85 Tweak CGCall functions again: by Daniel Dunbar · 16 years ago
  36. bccb068 Tweak CGCall functions: by Daniel Dunbar · 16 years ago
  37. 49f5a0d Add CodeGenFunction::ReturnTypeUsesSret by Daniel Dunbar · 16 years ago
  38. dbce6c1 Add new 'CXXConditionDeclExpr' expression node used for a 'condition' declaration, e.g: "if (int x=0) {...}". by Argiris Kirtzidis · 16 years ago
  39. fc1a9c4 Move ABI specific code for functions / calls to CGCall.cpp: by Daniel Dunbar · 16 years ago
  40. 9681683 Factor CodeGenFunction::StartFunction out of GenerateCode and StartObjCMethod. by Daniel Dunbar · 16 years ago
  41. aaa4dc6 Make IdentifierResolver::isDeclInScope regard declarations of a parent 'control' scope as part of the current scope. by Argiris Kirtzidis · 16 years ago
  42. 7157951 Add a LangOptions member to IdentifierResolver. by Argiris Kirtzidis · 16 years ago
  43. 90842b6 Add Sema::isDeclInScope which wraps IdentifierResolver::isDeclInScope. by Argiris Kirtzidis · 16 years ago
  44. 9fb751f Use a unified return block. by Daniel Dunbar · 16 years ago
  45. d231221 Fix test case. by Argiris Kirtzidis · 16 years ago
  46. bde0c9d Move EmitAggregate{Copy,Clear} into CodeGenFunction. - No functionality change. by Daniel Dunbar · 16 years ago
  47. 873f278 Implement parser support for the 'condition' part of C++ selection-statements and iteration-statements (if/switch/while/for). by Argiris Kirtzidis · 16 years ago
  48. 36269d2 Fix <rdar://problem/6197841> try, finally with no catch stops the exception from being propagated by Steve Naroff · 16 years ago
  49. 9c164b2 IdentifierResolver cleanup. Make some methods out-of-line. by Argiris Kirtzidis · 16 years ago
  50. fca6c29 Check in half-assed implementation of @try/@catch. by Anders Carlsson · 16 years ago
  51. 05d7be7 Simple @throw support. by Anders Carlsson · 16 years ago
  52. 453a878 Tweak implementation for allowing ObjC builtin type redefinitions. by Steve Naroff · 16 years ago
  53. f5e7eff Simplify typesAreBlockCompatible(). by Steve Naroff · 16 years ago
  54. aad4c5c Update VC++ project files. by Argiris Kirtzidis · 16 years ago
  55. 9acb0a4 Add types and functions related to exceptions. by Anders Carlsson · 16 years ago
  56. b01a211 Move handling of @try and @throw to the runtime class. by Anders Carlsson · 16 years ago
  57. 3b3b028 Added SSE4.1 packusdw by Mon P Wang · 16 years ago
  58. 0a2da0f Change CodeGen to emit calls using (RValue,Type) list: by Daniel Dunbar · 16 years ago
  59. 220cc99 Added SSE41 pmovsx pmovzx intrinsics by Mon P Wang · 16 years ago
  60. 566a650 Fix a number of issues w.r.t. emission of global for functions and by Daniel Dunbar · 16 years ago
  61. a8f0205 Refactor parameter attribute handling: by Daniel Dunbar · 16 years ago
  62. 5eea562 Add ThreadSpecified bit to Decl. - Patch from Kevin Tew. by Daniel Dunbar · 16 years ago
  63. 6fe1f11 Add missing RUN line by Daniel Dunbar · 16 years ago
  64. 7fce94d Support C++'s declaration-statement. by Argiris Kirtzidis · 16 years ago
  65. 7788120 rename libclangSEMA to libclangSema by Nico Weber · 16 years ago
  66. 19b9a0e skip test if llvm-gcc is requires but not found on the path. by Nuno Lopes · 16 years ago
  67. 2170bef Key LLVM types for TagDecl's off of the clang Type, since there is now by Daniel Dunbar · 16 years ago
  68. 762fecf Per PR2773, define __USER_LABEL_PREFIX__ for x86-32 Linux and Windows. by Eli Friedman · 16 years ago
  69. d6163f3 More type checking for blocks. Still incomplete (will hopefully finish up this weekend). by Steve Naroff · 16 years ago
  70. 770b11d Add comment back that Argiris pointed out that I mistakenly removed (the comments below it were stale, so I accidently removed the whole thing). by Ted Kremenek · 16 years ago
  71. 46a837c Change struct forward declarations and definitions to use unique RecordDecls, as opposed to creating a single RecordDecl and reusing it. by Ted Kremenek · 16 years ago
  72. c2a384d Support "typeof unary-expression" (GNU C++ extension). by Argiris Kirtzidis · 16 years ago
  73. 47a8145 Set different header search paths for the Windows platform. by Argiris Kirtzidis · 16 years ago
  74. 59bdb3e Add header search paths for Mingw32 (GCC version 4). by Argiris Kirtzidis · 16 years ago
  75. 1ad8ffb Line endings: CRLF -> LF by Argiris Kirtzidis · 16 years ago
  76. 435adbe Fix placement of const on a number of X86 builtins. by Daniel Dunbar · 16 years ago
  77. 34445e6 Test case for previous commit (Workaround gcc bug causing crash on our by Daniel Dunbar · 16 years ago
  78. e0d5946 Workaround gcc bug causing crash on our preprocessed outputs. by Daniel Dunbar · 16 years ago
  79. e0a4813 Remove stale comments. by Ted Kremenek · 16 years ago
  80. 2c98404 Remove "NextDecl" from RecordDecl. This change touches many files that where RecordDecl or CXXRecordDecl was constructed, always with an argument of 'NULL' for the previous declaration. by Ted Kremenek · 16 years ago
  81. 896d1e2 Set sext/zext on function result. - <rdar://problem/6156739> by Daniel Dunbar · 16 years ago
  82. 8e7207f Patch to scan-build by Jordan Breeding: by Ted Kremenek · 16 years ago
  83. f278700 Set function attributes (sext, zext, etc.) on Objective-C methods. by Daniel Dunbar · 16 years ago
  84. a6c27ef Updated checker build. by Ted Kremenek · 16 years ago
  85. 1be9f99 Fix unintended use of doxygen comment strings. by Daniel Dunbar · 16 years ago
  86. 35bd619 Fix infinite loop in for ... in code generation. by Daniel Dunbar · 16 years ago
  87. 7e72128 Added test case for the dead stores checker that was originally an FP reported in PR 2763. by Ted Kremenek · 16 years ago
  88. 77f9337 Fix CFG construction bug: by Ted Kremenek · 16 years ago
  89. 80ecfe5 Fix FindSpecRefs to be Python 2.4 compatible and get the SVN revision by Daniel Dunbar · 16 years ago
  90. 1d706e9 Prevent invalid warnings about incomplete implementations for methods by Daniel Dunbar · 16 years ago
  91. d2c1df6 fix running tests with valgrind (there were a lot of bogus failures and warnings) by Nuno Lopes · 16 years ago
  92. 39490aa scan-build: by Ted Kremenek · 16 years ago
  93. 4fea7b6 Touchup CheckSingleAssignmentConstraints() and CheckCompareOperands() to check for block pointers. by Steve Naroff · 16 years ago
  94. 6f37333 Fix a handful of typos (closure->block) to avoid confusion. by Steve Naroff · 16 years ago
  95. 3454b6c Add type checking for blocks. by Steve Naroff · 16 years ago
  96. c6c9274 Generate error if we try to implicit cast between different address spaces by Mon P Wang · 16 years ago
  97. b9a21d8 Add some Objective-C code generation tests. by Daniel Dunbar · 16 years ago
  98. b351815 NeXT: Emit lazy reference to Protocol class for forward protocol by Daniel Dunbar · 16 years ago
  99. 49bddf7 Avoid superfluous errors regarding variable-length arrays (casts). by Daniel Dunbar · 16 years ago
  100. ef0d4c7 Implement codegen of aggregates as lvalues in binary expressions, by Daniel Dunbar · 16 years ago