1. a83fb4b Correctly initialize bases with member pointers. This should fix PR6441 but that test case is a bit weird and I'd like to investigate further before closing that bug. by Anders Carlsson · 14 years ago
  2. d0785ea Give a slight edge to the context-sensitive keyword 'super' over by Douglas Gregor · 14 years ago
  3. 91f7ac7 Tweak typo-correction logic a bit regarding "super", so that we by Douglas Gregor · 14 years ago
  4. d425d2b Permit Objective C object pointers to be const_casted. by John McCall · 14 years ago
  5. 7381d5c Switch over the tablegen to use much prettier range technology by Sean Hunt · 14 years ago
  6. 80f93d9 "The attached patch allows clang to find the headers by Douglas Gregor · 14 years ago
  7. 238058c I hate this commit. by Douglas Gregor · 14 years ago
  8. c6772ce Keep track of the LLVM field numbers for non-virtual bases. by Anders Carlsson · 14 years ago
  9. 15ddfdc Start laying out bases as individual fields. We still use ugly i8 arrays but this is a step in the right direction. by Anders Carlsson · 14 years ago
  10. c39211d Add CodeGenTypes::ContainsPointerToDataMember overload that takes a CXXRecordDecl. by Anders Carlsson · 14 years ago
  11. 0fb9708 If a switch condition is constant, don't warn about missing enum cases. by John McCall · 14 years ago
  12. 6362b89 Add option '-analyzer-max-loop', which specifies the maximum by Zhongxing Xu · 14 years ago
  13. 532ec7b Teach the ObjC mangler to ignore member pointers just like gcc does. by John McCall · 14 years ago
  14. 00e9cbb Add a hack to silence warnings about failing to return from functions after by Chandler Carruth · 14 years ago
  15. a6b0907 Instantiate attributes on typedefs. This is a quick fix for PR7148, by Douglas Gregor · 14 years ago
  16. 2fe0025 Add a 'Base' type to RecursiveASTVisitor to make recursing easier and document by Nick Lewycky · 14 years ago
  17. e2aaf39 Clean up test case and remove XFAIL. This test can now distinguish between by Ted Kremenek · 14 years ago
  18. e175a6f Comments and assorted cleanups for the Objective C type AST. by John McCall · 14 years ago
  19. 506b57e Clean up some more uses of getAs<ObjCInterfaceType>() that Fariborz pointed by John McCall · 14 years ago
  20. dcf22ad Fix an ambiguous else warning from GCC by adding some much needed curlies. by Chandler Carruth · 14 years ago
  21. 3d48899 robustify the conflict marker stuff. Don't add 7 twice, which would by Chris Lattner · 14 years ago
  22. 40b492a Fix missing '}'. by Ted Kremenek · 14 years ago
  23. 3031c63 Correctly generate IR for ObjC messages sends to protocol-qualified types. by John McCall · 14 years ago
  24. 9ada39a Add libclang function 'clang_CXXMethod_isStatic' to query of a C++ method by Ted Kremenek · 14 years ago
  25. 293279a Test that mutability of class members that involve class definitions actually works by Douglas Gregor · 14 years ago
  26. 9dadd94 Teach ASTContext::getUnqualifiedArrayType() how to look through by Douglas Gregor · 14 years ago
  27. 33f9924 mutable is a storage class that can follow a class/struct/union definition. Fixes PR7153 by Douglas Gregor · 14 years ago
  28. 9614dc0 Don't attempt to poke into an invalid field's class type by Fariborz Jahanian · 14 years ago
  29. cfe833b Diagnose a redefinition error when there are two instantiations of friend by Douglas Gregor · 14 years ago
  30. 6cfacfe Determine when the instantiation of a friend function defined inside a by Douglas Gregor · 14 years ago
  31. e32b9b8 IRgen: Remove dead function. by Daniel Dunbar · 14 years ago
  32. 5ea6861 C++/Darwin/i386 ABI: Fix some problems with empty record handling. by Daniel Dunbar · 14 years ago
  33. ac7c2c8 C++98/03 [temp.friend]p4 requires that inline function definitions by Douglas Gregor · 14 years ago
  34. 3d91bbc Ensure that destructors are called for NRVO'd objects when the by Douglas Gregor · 14 years ago
  35. 79a9ad8 Pick the correct personality function based on the language. This prevents link failures when C/ObjC code uses __attribute__((cleanup())) (previously this was inserting references to two libstc++ symbols; the personality function and the __terminate() function). by David Chisnall · 14 years ago
  36. 9a0fcfe PR7117: Make sure we don't lose the calling convention for K&R-style by Eli Friedman · 14 years ago
  37. 150fcd5 when code completing inside a C-style block comment, don't emit errors about by Chris Lattner · 14 years ago
  38. 79bc57c Moved clang-builtin include dir position to immediately precede C includes. by mike-m · 14 years ago
  39. 55cbd6e Correctly diagnose array 'new' with initialization arguments when the new type is a typedef to an array type. by Anders Carlsson · 14 years ago
  40. 3caf04e When the type-id or new-type-id of a C++ "new" expression is a typedef by Douglas Gregor · 14 years ago
  41. 16565aa Don't emit any fallthrough / missing-noreturn warnings if we can't by John McCall · 14 years ago
  42. 761c94e When constant folding reference variables with an initializer to the by Chandler Carruth · 14 years ago
  43. 4bb3bf9 really use valist. by Chris Lattner · 14 years ago
  44. 4037833 fix rdar://7985267 - Don't emit an error about a non-pod argument by Chris Lattner · 14 years ago
  45. a53d2cb Emit a type record for TYPE_OBJC_OBJECT in the PCH file. I'm not by John McCall · 14 years ago
  46. ca67738 Be sure to initialize the "has base type as written" field of an by John McCall · 14 years ago
  47. 7eb914b Avoid doing two switches in TypeLoc's initialize() loop. The optimizer by John McCall · 14 years ago
  48. 86a3a03 When initializing thread-safe statics, put the call to by Douglas Gregor · 14 years ago
  49. 1eb2e59 Revert r103880 (thread-safe static initialization w/ exceptions), by Douglas Gregor · 14 years ago
  50. c9a8fa4 Minor twik to my last patch. (for radar 7986354). by Fariborz Jahanian · 14 years ago
  51. 0ca0b1f Fix API gen for objc_msgSend property of aggregate types by Fariborz Jahanian · 14 years ago
  52. bfcc823 When initializing thread-safe statics, put the call to by Douglas Gregor · 14 years ago
  53. 72bf425 Attempt to satisfy Release-Asserts build by Douglas Gregor · 14 years ago
  54. c00c1f6 Modify this comment per Doug's suggestion: we don't need to mangle protocols. by John McCall · 14 years ago
  55. 986f349 sigh by Chris Lattner · 14 years ago
  56. eb94155 fix _mm_shuffle_pd too, thanks to Joel Falcou for pointing this out. by Chris Lattner · 14 years ago
  57. b5b30b9 When applying the named return value optimization, we still need to by Douglas Gregor · 14 years ago
  58. c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 14 years ago
  59. d86c477 Implement a simple form of the C++ named return value optimization for by Douglas Gregor · 14 years ago
  60. 5077c38 Implement semantic analysis and an AST representation for the named by Douglas Gregor · 14 years ago
  61. f805a6c add type casts to _mm_shuffle_ps so the front-end applies by Chris Lattner · 14 years ago
  62. 3c9034c Recognize when the named return value optimization applies in a by Douglas Gregor · 14 years ago
  63. 67d438d C++/ABI/x86_64: Member pointers should be classified as INTEGER. by Daniel Dunbar · 14 years ago
  64. 7711523 C++/ABI/i386: Member function pointers should be passed by value. by Daniel Dunbar · 14 years ago
  65. f0229d8 Change install_name for libclang.dylib to '@rpath/libclang.dylib'. Fixes <rdar://problem/7987039>. by Ted Kremenek · 14 years ago
  66. 1b71848 Driver: Make -fverbose-asm the default for platforms where the integrated by Daniel Dunbar · 14 years ago
  67. e37706d Tweak test so that it does not require <typeinfo> by Douglas Gregor · 14 years ago
  68. 4fb2053 Patch to fix a crash on incomplete class declaration. Radar 7923673. by Fariborz Jahanian · 14 years ago
  69. 69cfeb1 Emit an lvalue dynamic_cast even if the result is not used. Another by Douglas Gregor · 14 years ago
  70. 8e0ac17 Add CXType and an initial set of supporting functions to libclang. This exposes details of by Ted Kremenek · 14 years ago
  71. 485ee32 When a failed dynamic_cast<T&> (which is an lvalue) results in a by Douglas Gregor · 14 years ago
  72. 5e37d48 Remove an unused function. by Anders Carlsson · 14 years ago
  73. 3e5af90 Move ContainsPointerToDataMember to CodeGenTypes. No functionality change. by Anders Carlsson · 14 years ago
  74. 509d477 Implement new default property synthesis rules. Essentially, no longer by Fariborz Jahanian · 14 years ago
  75. a238f87 Add documention on ns_returns_not_retained and cf_returns_not_retained attributes. by Ted Kremenek · 14 years ago
  76. 9a65b81 Improve error recovery in C/ObjC when the first argument of a function by Chris Lattner · 14 years ago
  77. 321c268 fit in 80 cols, remove prototypes for handling #assert since apparently noone cares. by Chris Lattner · 14 years ago
  78. 83a9447 Refactor ParseFunctionDeclaratorIdentifierList to have the first by Chris Lattner · 14 years ago
  79. e17a643 Added Expr::EvaluateAsAnyLValue. by Abramo Bagnara · 14 years ago
  80. 0fd3d1f Fix thinko in yesterday's fix. by Devang Patel · 14 years ago
  81. a63db84 Revert r103770, "Added basic source locations to Elaborated and DependentName by Daniel Dunbar · 14 years ago
  82. 3cb18bc Make sure that value-initialized pointers to data members are initialized correctly. by Anders Carlsson · 14 years ago
  83. 5431299 Added basic source locations to Elaborated and DependentName types. by Abramo Bagnara · 14 years ago
  84. 95f1b15 Namespaces can only be defined at global or namespace scope. Fixes PR6596. by Douglas Gregor · 14 years ago
  85. 00b4b03 Make sure to search semantic scopes and appropriate template-parameter by Douglas Gregor · 14 years ago
  86. ca4aa37 A vtable is used if the key function is defined... even if that key by Douglas Gregor · 14 years ago
  87. ecb2df2 XFAIL a test on Win32. by Daniel Dunbar · 14 years ago
  88. a1842d3 C++/Darwin/x86: Teach IRgen it can pass reference types in registers. by Daniel Dunbar · 14 years ago
  89. eb840bd Driver: Enable -integrated-as by default, at least for Darwin/x86 without -static. by Daniel Dunbar · 14 years ago
  90. 7d94918 Force -no-integrated-as in this test. by Daniel Dunbar · 14 years ago
  91. 8b90a78 Fix context in class static variable's debugging information entry. by Devang Patel · 14 years ago
  92. 1297fd7 Disable the available_externally optimization for inline virtual by Douglas Gregor · 14 years ago
  93. 3ba6061 Objective-C++ Sema. Fix a bug in instantiation of receivers. by Fariborz Jahanian · 14 years ago
  94. 6fb745b Rework when and how vtables are emitted, by tracking where vtables are by Douglas Gregor · 14 years ago
  95. fadebba Don't add a null successor to a CFGBlock when the contents of an @synchronized statement is empty. by Ted Kremenek · 14 years ago
  96. 6bfd533 Fold assertion into condition, as it does not hold all the time. by Ted Kremenek · 14 years ago
  97. 6614b2d Testcase for r103712. by Chandler Carruth · 14 years ago
  98. 1733bc3 Teach the AKA calculation to look at sugar on the pointee type for pointers and by Chandler Carruth · 14 years ago
  99. 5d7c29a Rebuild builtin_id * as an ObjCObjectPointerType, where builtin_id is the by John McCall · 14 years ago
  100. 8e98ac1 Relax an assertion. Various cases could lead to non-symbol values. by Zhongxing Xu · 14 years ago