1. 4a0b75c Implement getFloatingRank() for extended vectors. by Daniel Dunbar · 16 years ago
  2. e299eb4 Silence a GCC warning by Sebastian Redl · 16 years ago
  3. 39c0f6f PODness and Type Traits by Sebastian Redl · 16 years ago
  4. 378530c Add prototype ccc rewrite. by Daniel Dunbar · 16 years ago
  5. ffc25cc Add forgotten test case for linkage specifications by Douglas Gregor · 16 years ago
  6. d802838 Introduce support for "transparent" DeclContexts, which are by Douglas Gregor · 16 years ago
  7. 9c47fe6 simplify Preprocessor::getSpelling now that identifiers carry around by Chris Lattner · 16 years ago
  8. ac73695 Fix an uninitialized-variable warning by Douglas Gregor · 16 years ago
  9. 94a15bd remove optimization to avoid looking ahead for cases like ::foo. This by Chris Lattner · 16 years ago
  10. 094f9a8 simplify some code. by Chris Lattner · 16 years ago
  11. a9d6ec7 Rearrange some code in TryAnnotateTypeOrScopeToken to make it by Chris Lattner · 16 years ago
  12. 4899a75 Fix a bug where we'd try to look beyond the current cached tokens when by Chris Lattner · 16 years ago
  13. 1f6d728 Pass '-undefined- to the linker by Anders Carlsson · 16 years ago
  14. 8376d2e TryAnnotateTypeOrScopeToken and TryAnnotateCXXScopeToken can by Chris Lattner · 16 years ago
  15. 86b360e Generate debug info for VLA types by Anders Carlsson · 16 years ago
  16. 7d9d413 add a testcase by Chris Lattner · 16 years ago
  17. 2c30145 ParseCXXSimpleTypeSpecifier can only be called on things that are by Chris Lattner · 16 years ago
  18. 712f9a3 sink a call to TryAnnotateCXXScopeToken down into the by Chris Lattner · 16 years ago
  19. 4e7a420 Simplify some control flow and remove a call to TryAnnotateCXXScopeToken by Chris Lattner · 16 years ago
  20. 914660b code simplification by Chris Lattner · 16 years ago
  21. b75fde6 sink calls to TryAnnotateTypeOrScopeToken down into the only cases that they by Chris Lattner · 16 years ago
  22. 0a97061 push the call in isCXXDeclarationSpecifier to TryAnnotateTypeOrScopeToken by Chris Lattner · 16 years ago
  23. 1e01594 my previous patch caused sema to drop the global qualifier, make by Chris Lattner · 16 years ago
  24. 68751c4 sink the call to TryAnnotateTypeOrScopeToken in by Chris Lattner · 16 years ago
  25. f72f79c use early exits to reduce nesting. by Chris Lattner · 16 years ago
  26. c2a1c99 simplify control flow by removing a goto. by Chris Lattner · 16 years ago
  27. e7de361 eliminate lookahead when parsing ::new / ::delete. by Chris Lattner · 16 years ago
  28. 9911393 minor simplifications. by Chris Lattner · 16 years ago
  29. 2e427d5 Fix the bug that would cause Python to crash at startup. by Anders Carlsson · 16 years ago
  30. accd9b7 Rename AddReadAttrs to FunctionAttrs. This is related to Duncan's patch r61525. by Bill Wendling · 16 years ago
  31. c06c279 Perform default function/array conversion for input arguments to inline asm statements if the input expr can be a memory operand by Anders Carlsson · 16 years ago
  32. 5ff0ee5 Parser support for C++ using directives, from Piotr Rak by Douglas Gregor · 16 years ago
  33. f463b9a Remove hasKind(). Use existing getKind(). by Fariborz Jahanian · 16 years ago
  34. 1478895 Fill in C++ status table for statements. by Sebastian Redl · 16 years ago
  35. 0a23e8f Convert a two more statement actions to smart pointers. by Sebastian Redl · 16 years ago
  36. d4226fc Fix a grep error that caused CodeGenObjC/encode-test.m to fail. by Sebastian Redl · 16 years ago
  37. b7605e8 Diagnose declarations that don't declare anything, and fix PR3020. by Sebastian Redl · 16 years ago
  38. e85053d Fix filename typo. by Sebastian Redl · 16 years ago
  39. 7d2de55 add RUN line by Nuno Lopes · 16 years ago
  40. 176f8d4 Add a MS specific intrinsic. by Anders Carlsson · 16 years ago
  41. f7b00e7 Eli noticed that I had forgotten some #defines. Add them. by Anders Carlsson · 16 years ago
  42. bfa6582 Add float.h header. Eli, please review :) by Anders Carlsson · 16 years ago
  43. adf0b32 Add __builtin_flt_rounds by Anders Carlsson · 16 years ago
  44. 853dd39 Add support for out-of-line definitions of conversion functions and member operators by Douglas Gregor · 16 years ago
  45. 06acefb Fix implementation of _mm_pause. by Anders Carlsson · 16 years ago
  46. 77f0679 OK, all tests pass. Let's start using the SSE2 header by Anders Carlsson · 16 years ago
  47. 4aab7fd Add two more builtins by Anders Carlsson · 16 years ago
  48. 89cda36 Complete the test after adding handling of merged attributes on decls. by Anton Korobeynikov · 16 years ago
  49. b27a870 Add full dllimport / dllexport support: both sema checks and codegen. by Anton Korobeynikov · 16 years ago
  50. ba42c1c Testcase for stdcall/fastcall sema checks. Patch by Ilya Okonsky! by Anton Korobeynikov · 16 years ago
  51. 7d4cd09 Fix formatting by Anders Carlsson · 16 years ago
  52. 6e59360 Add _mm_pause and _MM_SHUFFLE by Anders Carlsson · 16 years ago
  53. 430f939 More SSE2 intrinsics by Anders Carlsson · 16 years ago
  54. 3cb886b More SSE2 intrinsics by Anders Carlsson · 16 years ago
  55. ad62040 Add parser support for __forceinline, __w64, __ptr64. by Steve Naroff · 16 years ago
  56. edd04d5 Add parser support for __cdecl, __stdcall, and __fastcall. by Steve Naroff · 16 years ago
  57. 97324e6 Add Fedora 10 GCC paths. by Zhongxing Xu · 16 years ago
  58. 7e48810 Make _mm_add_si64 inlined by Anders Carlsson · 16 years ago
  59. c5ab14f Add explicit "fuzzy" parse support for Microsoft declspec. by Steve Naroff · 16 years ago
  60. 1af6e4f Fix try statement deserialization. by Sebastian Redl · 16 years ago
  61. a793e1d Add a bunch of comments and FIXMEs. by Ted Kremenek · 16 years ago
  62. 82e4c67 set region default value if there are not enough init values for array and struct. by Zhongxing Xu · 16 years ago
  63. 0da0273 Add serialization support for TypeOfType. by Zhongxing Xu · 16 years ago
  64. 71af02f Add serialization support for TypeOfExpr. by Zhongxing Xu · 16 years ago
  65. 5247343 Keep track of template arguments when we parse them. Right now, we don't actually do anything with the template arguments, but they'll be used to create template declarations by Douglas Gregor · 16 years ago
  66. 7efc24b Add integer arithmetic intrinsics by Anders Carlsson · 16 years ago
  67. bf5b2c8 Add store/set/load intrisics by Anders Carlsson · 16 years ago
  68. c7fee2c Start implementing some SSE2 instructions by Anders Carlsson · 16 years ago
  69. 721c6f2 Comment and fixup GDM entries for RegionStore to use unique 'tag classes' to identify GDM entries. by Ted Kremenek · 16 years ago
  70. 62ae25a Correct the order in which we cope with end-of-class-definition by Douglas Gregor · 16 years ago
  71. 7962694 Sema for fastcall/stdcall stuff. Tests will follow. Patch by Ilya Okonsky! by Anton Korobeynikov · 16 years ago
  72. 7c86585 Fix misguided type selection by Douglas Gregor · 16 years ago
  73. 6a20201 When determining whether a class type has a const copy constructor, be by Douglas Gregor · 16 years ago
  74. d3498aa Last patch, for now, to privde ObjC's encoding of types. by Fariborz Jahanian · 16 years ago
  75. 6e71edc Don't push OverloadedFunctionDecls onto the chain of declarations by Douglas Gregor · 16 years ago
  76. 1267362 Fix <rdar://problem/6465284> clang ObjC rewriter: objc_super messed up again. by Steve Naroff · 16 years ago
  77. e07d9ec Lot more encoding work. We are closing the gap to by Fariborz Jahanian · 16 years ago
  78. 6293918 Remove old PTH token-generation test harness. by Ted Kremenek · 16 years ago
  79. d94668d PTH: Remove some methods and simplify some conditions in PTHLexer::Lex(). No big functionality change. by Ted Kremenek · 16 years ago
  80. 8186f82 PTH: Use 3 bytes instead of 4 bytes to encode the persistent ID for a token. by Ted Kremenek · 16 years ago
  81. 6176cd6 Cosmetics: rename a variable and tighten spacing. No functionality change. by Ted Kremenek · 16 years ago
  82. 303102d Merge pr-3188.cpp into constructor.cpp. by Sebastian Redl · 16 years ago
  83. b9b218e Add a setter for CVR qualifiers, patch by Lukasz Janyst! by Chris Lattner · 16 years ago
  84. d2c4abb PTH: by Ted Kremenek · 16 years ago
  85. 08d3ff3 PTH: by Ted Kremenek · 16 years ago
  86. 9ab79bf PTH: by Ted Kremenek · 16 years ago
  87. 80402cf Add some block-pointer conversions in C++ by Douglas Gregor · 16 years ago
  88. ddfd9d5 Don't explicitly represent OverloadedFunctionDecls within by Douglas Gregor · 16 years ago
  89. 89ed86b More encoding support; in this case, encoding of by Fariborz Jahanian · 16 years ago
  90. 95f6bce Fix <rdar://problem/6463613> clang ObjC rewriter: assertion failure rewriting @selector?. by Steve Naroff · 16 years ago
  91. 8c5d7fa Guard against the return of PR3188 by Sebastian Redl · 16 years ago
  92. 237116b Full AST support and better Sema support for C++ try-catch. by Sebastian Redl · 16 years ago
  93. f1d7571 Support conversion from a null pointer constant o any Objective-C object pointer type. Fixes rdar://problem/6463298 by Douglas Gregor · 16 years ago
  94. 2255ed3 Fixed a bug showed up the meta-data for protocol by Fariborz Jahanian · 16 years ago
  95. 743c816 Partial AST and Sema support for C++ try-catch. by Sebastian Redl · 16 years ago
  96. 42d0bf9 Patch to remove bogus warning in case of @dynamic by Fariborz Jahanian · 16 years ago
  97. 74a2129 Expr and Stmt must be destroyed with Destroy, not delete. Fixes PR/3245. by Sebastian Redl · 16 years ago
  98. 5ea26ed Fix test failures noticed by Fariborz. by Anders Carlsson · 16 years ago
  99. 8833aa9 Fix initialization order. by Zhongxing Xu · 16 years ago
  100. 046bf21 Flip the switch and start using the new xmmintrin.h by Anders Carlsson · 16 years ago