1. 0a664b8 C++1y n3648: parse and reject init-captures for now. by Richard Smith · 11 years ago
  2. 9e00f12 ArrayRef'ize some SemaOverload methods by Dmitri Gribenko · 11 years ago
  3. f632730 [ms-cxxabi] Implement member pointer conversions by Reid Kleckner · 11 years ago
  4. 089db2e Debug Info: Remove unnecessary check for dependent array types by David Blaikie · 11 years ago
  5. 524387a CodeGen for CapturedStmts by Ben Langmuir · 11 years ago
  6. 7588361 Fix the return type of the complex creal functions. Patch by YunZhong Gao, modified to use _Static_assert and to check __STDC_HOSTED__ by me. by Richard Smith · 11 years ago
  7. f4030ae [doc parsing]: make single character command impostures warn in pedantic mode. by Fariborz Jahanian · 11 years ago
  8. 5cd4c41 [doc parsing]: So, in this patch, single character by Fariborz Jahanian · 11 years ago
  9. 9d6b1cb [doc parsing]: don't attempt to fix single character by Fariborz Jahanian · 11 years ago
  10. ee3cd95 xopintrin.h: Add wrappers for all flavors of _mm_com. by Benjamin Kramer · 11 years ago
  11. 61b669b Add include guards to prfchwintrin.h. by Benjamin Kramer · 11 years ago
  12. 6391ea2 Implement C++1y constant initializer rules: in a constant initializer for an by Richard Smith · 11 years ago
  13. afde200 [analyzer; alternate arrows] for "loop back" edges add back the extra edge to the closing '}' by Ted Kremenek · 11 years ago
  14. 8841c53 [analyzer;alternate arrows] adapt 'for' loop aesthetic cleanup to 'while' loops. by Ted Kremenek · 11 years ago
  15. d7ceab3 Objective-C: Correctly encode 'retain' and 'copy' for readonly properties. by Nico Weber · 11 years ago
  16. f9ba851 [PCH] Remove the ASTReaderListener::ReadHeaderFileInfo callback. by Argyrios Kyrtzidis · 11 years ago
  17. d3220db [modules] When building a module, make sure we don't serialize out HeaderFileInfo for headers not belonging to the module. by Argyrios Kyrtzidis · 11 years ago
  18. f06989b typo by Adrian Prantl · 11 years ago
  19. 41487f3 Comment: use \code...\endcode for code examples by Dmitri Gribenko · 11 years ago
  20. 5b38277 unbreak buildbot. by Fariborz Jahanian · 11 years ago
  21. ad91e54 [doc parsing]: Also do typo correction for by Fariborz Jahanian · 11 years ago
  22. abbfa67 Turn off a warning caused by my last patch. by Fariborz Jahanian · 11 years ago
  23. 0089bc4 documentation parsing. Patch to do typo correction for by Fariborz Jahanian · 11 years ago
  24. 4b7b104 Further fix to pointer to member formatting. by Daniel Jasper · 11 years ago
  25. 395228f Fix formatting of pointers to members. by Daniel Jasper · 11 years ago
  26. 11e1380 Improve line breaking in binary expressions. by Daniel Jasper · 11 years ago
  27. 3190ca9 Forward #pragma comment(lib/linker) through as flags metadata by Reid Kleckner · 11 years ago
  28. b2f063a Change indentation of multi-line nested name specifiers. by Daniel Jasper · 11 years ago
  29. 2fca802 Fix one FIXME in VTableBuilder by Timur Iskhodzhanov · 11 years ago
  30. 3923d6a Debug Info: Using declarations/DW_TAG_imported_declaration of variables, types, and functions. by David Blaikie · 11 years ago
  31. 70133b5 In block enum-return inference, don't die on loads of enum lvalues. by John McCall · 11 years ago
  32. e756563 C++1y: Add a step limit to constexpr evaluation, to catch runaway loops. by Richard Smith · 11 years ago
  33. aecda96 [analyzer; alternate edges] insert an extra edge for 'for' statements to conditions. by Ted Kremenek · 11 years ago
  34. 8484b37 [analyzer;alternate edges] edges from subexpressions of "?:" are important to retain by Ted Kremenek · 11 years ago
  35. a49a7fe C++1y constant expression evaluation: compound assignment support for floating-point and pointer types. by Richard Smith · 11 years ago
  36. ddb379e The style guide prefers preincrement expressions :-) by Adrian Prantl · 11 years ago
  37. 4008088 remove commented out code. by Adrian Prantl · 11 years ago
  38. d9de51f When typo correction produces an overloaded result when looking up a member, by Nick Lewycky · 11 years ago
  39. 4c71b8c Don't crash in IRGen if a conditional with 'throw' in one of its branches is by Richard Smith · 11 years ago
  40. 28b34d8 Fix crash on invalid in template type diffing. by Richard Trieu · 11 years ago
  41. be0b207 [analyzer;alternate arrows] Fix inconsistencies in recorded location context when handling interprocedural paths. by Ted Kremenek · 11 years ago
  42. f4bbb1d [analyzer; alternate arrows] add back recording whether we visited the first edge. by Ted Kremenek · 11 years ago
  43. b17c2f7 [analyzer; alternate arrows] remove pruning of loop diagnostics. by Ted Kremenek · 11 years ago
  44. 03194fb [analyzer; alternate arrows] include logical '||' and '&&' as anchors for edges. by Ted Kremenek · 11 years ago
  45. bc0fd81 [analyzer; alternate arrows] include an edge from the "break" or "continue" by Ted Kremenek · 11 years ago
  46. 98fb1cc [analyzer; alternate arrows] the extra edge to the closing '}' in a loop adds no value. by Ted Kremenek · 11 years ago
  47. 96b8134 [analyzer; alternate arrows] the initializer of a ForStmt isn't interesting either. by Ted Kremenek · 11 years ago
  48. 99e9fe0 Try to recognise hidden tag type names in potential declarations, in ObjC code as well. by Argyrios Kyrtzidis · 11 years ago
  49. 7f0ffb3 C++1y: Update __cplusplus to temporary value 201305L to allow detection of provisional C++1y support. by Richard Smith · 11 years ago
  50. 636478e [analyzer] Fix a crash triggered by printing a note on a default argument by Anna Zaks · 11 years ago
  51. e2f7337 [analyzer; alternate arrows] The ForStmt increment is not a critical anchor for arrows. by Ted Kremenek · 11 years ago
  52. 5068b6f Test commit by Serge Pavlov · 11 years ago
  53. d71ec16 Config file support for clang-format, part 1. by Alexander Kornienko · 11 years ago
  54. dbef71e Correctly recognize dereference after 'delete'. by Daniel Jasper · 11 years ago
  55. a399f77 [analyzer; alternate edges] simplify optimization rules to look at control-flow conditions to prune edges. by Ted Kremenek · 11 years ago
  56. d0f5faf [analyzer; alternate arrows] use the terminator condition as the location for 'entering loop body' by Ted Kremenek · 11 years ago
  57. 402cd22 Weaken an assertion in memcpyization to account for unnamed bitfields. by John McCall · 11 years ago
  58. d20afcb C++1y constant expression evaluation: support for compound assignments on integers. by Richard Smith · 11 years ago
  59. b18840d Have SourceManager::getLocForEndOfFile() point at the "EOF" location of the FileID. by Argyrios Kyrtzidis · 11 years ago
  60. a8942d7 C++1y: an assignment operator is implicitly 'constexpr' if it would only call 'constexpr' assignment operators for a literal class type. by Richard Smith · 11 years ago
  61. b097a57 [analyzer; alternate arrows] provide a diagnostic for entering a loop for the first time. by Ted Kremenek · 11 years ago
  62. c2fc4ab DebugInfo: Support imported modules (using directives) within lexical blocks. by David Blaikie · 11 years ago
  63. 481da55 [analyzer; alternate arrows] don't increment the path iterator when we just deleted the next iterator. by Ted Kremenek · 11 years ago
  64. 993f43f Grab-bag of bit-field fixes: by John McCall · 11 years ago
  65. 009735d Add missing initialization for Sema::CurScope. This is important for AST consumers which don't create a Parser. Pointed out by Tom Honermann. by Richard Smith · 11 years ago
  66. 7adf79a Move PragmaCommentHandler to lib/Parse in preparation for calling Sema by Reid Kleckner · 11 years ago
  67. bdfdb1d Modify ASTReaderListener to allow visiting the input files of an AST file. by Argyrios Kyrtzidis · 11 years ago
  68. 00ffb80 [analyzer] Remove now-unused bindCompoundLiteral helper function. by Jordan Rose · 11 years ago
  69. 6376703 [analyzer] Handle CXXTemporaryObjectExprs in compound literals. by Jordan Rose · 11 years ago
  70. 2624b81 Fix representation of compound literals for C++ objects with destructors. by Jordan Rose · 11 years ago
  71. b840921 by Ulrich Weigand · 11 years ago
  72. 6b20351 by Ulrich Weigand · 11 years ago
  73. fd4aa4b R600: Update GPU variants in -mcpu option by Tom Stellard · 11 years ago
  74. dbce2c6 Add llvm_unreachable at end of fully covered switch by Hans Wennborg · 11 years ago
  75. fb59486 Added Mozilla style, cleaned get*Style methods. by Alexander Kornienko · 11 years ago
  76. 7ff96ed Don't break comments after includes. by Daniel Jasper · 11 years ago
  77. 53e72cd Change indentation when breaking after a type. by Daniel Jasper · 11 years ago
  78. 10f6f06 Require the containing type to be complete when we see __alignof__ of a field. by John McCall · 11 years ago
  79. 692eafd C++1y: support range-based for loops in constant expressions. by Richard Smith · 11 years ago
  80. c194c95 Break the class-inheritance ":" to the new line. by Daniel Jasper · 11 years ago
  81. f022018 Don't put a space before ellipsis. by Daniel Jasper · 11 years ago
  82. ce61715 C++1y: support 'for', 'while', and 'do ... while' in constant expressions. by Richard Smith · 11 years ago
  83. 27f9cf3 Fix assert if __extension__ or _Generic is used when initializing a char array from a string literal. by Richard Smith · 11 years ago
  84. 5528ac9 C++1y: support for increment and decrement in constant expression evaluation. by Richard Smith · 11 years ago
  85. b476a14 Factor out duplication between lvalue-to-rvalue conversions and variable by Richard Smith · 11 years ago
  86. 62ed889 Replace 'MultiExprArg()' with 'None' by Dmitri Gribenko · 11 years ago
  87. d8ffd0b Make all 'is in extern "C"' tests use the lexical context. by Rafael Espindola · 11 years ago
  88. 287f24d ArrayRef'ize Sema::CheckObjCMethodCall by Dmitri Gribenko · 11 years ago
  89. b98cf79 Use lexical contexts when checking for conflicting language linkages. by Rafael Espindola · 11 years ago
  90. 30ae1ed Handle parens properly when initializing a char array from a string literal. by Richard Smith · 11 years ago
  91. 958ba64 ArrayRef'ization of some methods in SemaOverload. Patch by Robert Wilhelm! by Richard Smith · 11 years ago
  92. fe57db2 Use remove_if to erase parts of a vector. Avoids O(n^2) worst cases. by Benjamin Kramer · 11 years ago
  93. 5543169 Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constructor from None by Dmitri Gribenko · 11 years ago
  94. 3ce0de6 Properly parsing __declspec(safebuffers), though there is no semantic hookup. For more information about safebuffers, see MSDN: http://msdn.microsoft.com/en-us/library/dd778695(v=vs.110).aspx by Aaron Ballman · 11 years ago
  95. f973424 Reverting r181004 since it has broken test/Sema/wchar.c. by Aaron Ballman · 11 years ago
  96. 269cc2d Lex: Fix quadratic behavior when unescaping _Pragma strings. by Benjamin Kramer · 11 years ago
  97. dc17384 In VarDecl nodes, store the thread storage class specifier as written. by Enea Zaffanella · 11 years ago
  98. ff920ee AArch64: teach Clang about __clear_cache intrinsic by Tim Northover · 11 years ago
  99. 60e141e Implement most of N3638 (return type deduction for normal functions). by Richard Smith · 11 years ago
  100. 82f145d Don't build a call expression referring to a function which we're not allowed by Richard Smith · 11 years ago