1. f184f9a Update www: we now mangle references to function parameters properly. Also, this is really more a decltype issue rather than a late-specified return type issue. by Richard Smith · 13 years ago
  2. e0c7665 type of last arg of objc_assign_ivar is ptrdiff_t. // rdar://9362887 by Fariborz Jahanian · 13 years ago
  3. 3e4c6c4 Implement support for C++0x alias templates. by Richard Smith · 13 years ago
  4. 78a7d7d __alignof attribute on the field must consider by Fariborz Jahanian · 13 years ago
  5. 6df7873 When the environment variable LIBCLANG_RESOURCE_USAGE is set, teach by Douglas Gregor · 13 years ago
  6. 83a401b PR9849: Fix _mm_setr_pi32 and friends to actually work correctly. They broke with the MMX rewrite a while back. by Eli Friedman · 13 years ago
  7. b9bd56e tests: Force a triple in this test (so uint128 is present). by Daniel Dunbar · 13 years ago
  8. ff36559 When instantiating a block expression, the instantiated by Fariborz Jahanian · 13 years ago
  9. 31c79b4 Do not drop uint128 on the floor. by Devang Patel · 13 years ago
  10. b6adf2c Scoped enumerations should not be treated as integer types (in the C by Douglas Gregor · 13 years ago
  11. 4b81cde When providing code completions for an Objective-C property access, by Douglas Gregor · 13 years ago
  12. e59abb5 Introduce a Diagnostic::Report function that accepts and emits a StoredDiagnostic. by Argyrios Kyrtzidis · 13 years ago
  13. 38165ae Place "incompatible pointer types assigning..." warning under a flag, allowing it to be surgically mapped to an error. by Ted Kremenek · 13 years ago
  14. 9be6e7c Add Checker callback for running a checker at the end of processing an entire TranslationUnit. Patch by Lei Zhang. by Ted Kremenek · 13 years ago
  15. ad7ec12 Implement some framework for defaulted constructors. by Sean Hunt · 13 years ago
  16. 7665ad8 Frontend: Fix a crash in CC_LOG_DIAGNOSTICS handling. by Daniel Dunbar · 13 years ago
  17. 9389ddc Look through block pointers and ObjC object pointers by Matt Beaumont-Gay · 13 years ago
  18. 439d3c3 With invalid overloaded operators, we can get into funny cases where by Douglas Gregor · 13 years ago
  19. 3dc0541 Preserve the full name of the file, so that '-c -o foo.pic.o' produces by Nick Lewycky · 13 years ago
  20. c159870 Change cycle detection to be based off of a warning flag. by Sean Hunt · 13 years ago
  21. e74c25c When adding KVC code completions, keep track of all of the selectors by Douglas Gregor · 13 years ago
  22. ebcbe1d there i fixed it by Sean Hunt · 13 years ago
  23. 8c647de ASTUnit::LoadFromASTFile(): recover the resources from an ASTReader if it crashes during PCH validation. by Ted Kremenek · 13 years ago
  24. bd61e34 Clean up Sema::BuildCXXNestedNameSpecifier()'s creation of TypeLoc by Douglas Gregor · 13 years ago
  25. c9366ba Implement Sema::isExprCallable. by Matt Beaumont-Gay · 13 years ago
  26. c746937 When converting an integral template argument value to a non-type by Douglas Gregor · 13 years ago
  27. 1f38251 Pack ivar offsets together. by Bill Wendling · 13 years ago
  28. 5ea4f44 Record where the GCOV data files should be placed. by Nick Lewycky · 13 years ago
  29. b107dd0 Simplification noticed by Chris. by Bill Wendling · 13 years ago
  30. f7faee0 tests: Tweak test to at least use a standard arch, to ensure we try to invoke by Daniel Dunbar · 13 years ago
  31. f5ccd59 And a test case for my last patch. by Fariborz Jahanian · 13 years ago
  32. 9b3acaa More ms_struct bitfield stuff: by Fariborz Jahanian · 13 years ago
  33. 36615b8 Change test/PCH/cxx-static_assert.cpp so that it doesn't need a separate header. by Argyrios Kyrtzidis · 13 years ago
  34. 69d891d From Vassil Vassilev: by Axel Naumann · 13 years ago
  35. 14a0116 Add C++ include paths for libstdc++ with Ubuntu 11.04 and Debian's libstdc++6-4.5, as collected from http://packages.ubuntu.com/search?mode=exactfilename&suite=natty&section=all&arch=any&searchon=contents&keywords=c%2B%2Blocale.h and http://packages.debian.org/wheezy/armel/libstdc++6-4.5-dev/filelist by Axel Naumann · 13 years ago
  36. fe57eef Implement a better version of delegating constructor cycle detection. by Sean Hunt · 13 years ago
  37. 574bb5a No, fix this use after free properly. by Nick Lewycky · 13 years ago
  38. b51bdda Convert the non-temporal store builtins to LLVM-native IR. by Bill Wendling · 13 years ago
  39. 3c989fc Fix use after free through StringRef. by Nick Lewycky · 13 years ago
  40. 4f4e413 Type prefixes of unresolved-names should only be mangled as unresolved-types by John McCall · 13 years ago
  41. 5e1db6a Enhance clang_getCXTUResourceUsage() to return the amount of memory used by the Preprocessor's bump allocator as well as those from the PreprocessingRecord. by Ted Kremenek · 13 years ago
  42. 156b640 Implement serialization of delegating constructors. by Sean Hunt · 13 years ago
  43. fa74c23 Ensure that delegating constructor loop detection uses canonical declarations. by Sean Hunt · 13 years ago
  44. 3afa975 Fix the delegating constructors test to not rely on basic block names. by Sean Hunt · 13 years ago
  45. 61c6c44 When tag lookup finds something ambiguous, and we're defining a new by Douglas Gregor · 13 years ago
  46. 4f40ddd Fix a typo in a test. CHEKC -> CHECK by Richard Trieu · 13 years ago
  47. dd3e554 Introduce a new libclang API, clang_isFileMultipleIncludeGuarded(), by Douglas Gregor · 13 years ago
  48. d808bd2 Introduce ASTUnit::LoadFromCompilerInvocationAction that allows one to create an ASTUnit by Argyrios Kyrtzidis · 13 years ago
  49. b76af9c Ensure that destructors are properly inovked when an exception leaves by Sean Hunt · 13 years ago
  50. cc0f9f1 Only the first zero-length bitfield decides alignment of by Fariborz Jahanian · 13 years ago
  51. 01aacc0 Move the AST modifications to after the cycle detection in by Sean Hunt · 13 years ago
  52. 06bc9eb Extend -Wnon-pod-memset to also encompass memcpy() and memmove(), by Douglas Gregor · 13 years ago
  53. bd82a8f Silence warnings. by Devang Patel · 13 years ago
  54. 855a8e7 Finish off rules for z-length bitfields in ms_struct structs. // rdar://8823265 by Fariborz Jahanian · 13 years ago
  55. d49bd55 Fix delegating constructors stylistic issues. by Sean Hunt · 13 years ago
  56. 2a053a3 Separate the -Wnon-pod-memset warnings into two separate warnings: by Douglas Gregor · 13 years ago
  57. a6e09bb Remove unused but set variable. by Benjamin Kramer · 13 years ago
  58. eccce7e Fix a double free when parsing malformed code. Fixes rdar://9173693. by Argyrios Kyrtzidis · 13 years ago
  59. 0f4be74 When parsing a template friend declaration we dropped the template by Chandler Carruth · 13 years ago
  60. e452c78 Only check the use of memset() if we're refering to a C function named by Douglas Gregor · 13 years ago
  61. 2bc0e5d Add a few ARM coprocessor builtins. The llvm side of the commit contains the intrinsics and matching patterns. by Bruno Cardoso Lopes · 13 years ago
  62. 65200d0 Remove several more rvalue references from swap arguments in libstdc++4.4. by Jeffrey Yasskin · 13 years ago
  63. 094ea0a Removing strncpy() checking in CString checker for now. Some significant changes need to be made to properly support modeling of it since it potentially leaves strings non-null terminated. by Lenny Maiorani · 13 years ago
  64. 3477224 Update metadata id number in string compare check. by Devang Patel · 13 years ago
  65. cb65de1 Revert r130750, "Make the mno flags match GCC. Patch by Alexander Best!", it breaks tests. by Daniel Dunbar · 13 years ago
  66. d8b9d68 Make the mno flags match GCC. Patch by Alexander Best! by Michael J. Spencer · 13 years ago
  67. 1d8052d Use the canonical decl when generating the locations for USRs. by Ted Kremenek · 13 years ago
  68. 1dd986d Added an assert to IntegerLiteral to ensure that the integer type passed in has the same size as the APInt passed in. Also, updated the comments around IntegerLiteral. by Richard Trieu · 13 years ago
  69. a87a2b2 Function with internal linkage name do not have mangled name. by Devang Patel · 13 years ago
  70. 2df74c0 Do not try to get mangled name of block helpers. Apply a stopgap measure to fix SingleSource/UnitTests/block-copied-in-cxxobj compile time crash. by Devang Patel · 13 years ago
  71. 9ca2851 Tweak the retain/release checker to not stop tracking retained objects when calling C++ methods. This is a temporary solution to prune false positives until we have a general story using annotations. by Ted Kremenek · 13 years ago
  72. 1a58402 Add the -mstackrealign option which just communicates the need to by Eric Christopher · 13 years ago
  73. cc95719 Driver/Darwin: Honor --sysroot= when invoking the linker, on Darwin. by Daniel Dunbar · 13 years ago
  74. 02a444d Fixed test case asserts due to checkin of r130710. by Chad Rosier · 13 years ago
  75. 58dc5ca Emit debug info for __destroy_helper_block_ and __copy_helper_block. by Devang Patel · 13 years ago
  76. b5a03b6 Skip extra copy from aggregate where it isn't necessary; rdar://problem/8139919 . This shouldn't make much of a difference at -O3, but should substantially reduce the number of generated memcpy's at -O0. by Eli Friedman · 13 years ago
  77. 35bdbf4 Augment retain/release checker to not warn about tracked objects passed as arguments to C++ constructors. This is a stop-gap measure for Objective-C++ code that uses smart pointers to manage reference counts. by Ted Kremenek · 13 years ago
  78. b2dba4b When using -std= flag added check to make sure language and standard are compatable by Chad Rosier · 13 years ago
  79. 454fd2d Implements strncasecmp() checker and simplifies some of the logic around creating substrings if necessary and calling the appropriate StringRef::compare/compare_lower(). by Lenny Maiorani · 13 years ago
  80. 7193b3e Don't abuse reinterpret cast to do something the API of PointerUnion by Chandler Carruth · 13 years ago
  81. 850dd80 Adds a test for the command line parser when a quoted string is not closed by a quote. by Manuel Klimek · 13 years ago
  82. f4bbbf0 Add a warning for when reinterpret_cast leads to undefined behavior, patch by Richard Trieu! by Argyrios Kyrtzidis · 13 years ago
  83. c6d0782 Switch CallArgList from an std::pair to a new CallArg struct (which will eventually gain more members). Working towards modifying call emission to avoid unnecessary copies. by Eli Friedman · 13 years ago
  84. 04c9a49 Simplify code a bit by using CallArgList::add. No intended functionality change. by Eli Friedman · 13 years ago
  85. 61b1efe Disable CFI if not using the integrated assembler. We should probably do this only for by Rafael Espindola · 13 years ago
  86. 340fa24 More rule enforcement of zero bitfields for ms_struct. by Fariborz Jahanian · 13 years ago
  87. 0f0cdab lib/Frontend/InitHeaderSearch.cpp: Tweak AddPath() to accept "/foo/bar" (not "X:\foo\bar") with -isysroot. test/PCH/reloc.c can pass. by NAKAMURA Takumi · 13 years ago
  88. e95a866 test/CodeGenCXX/vtable-debug-info.cpp: It does not crash on mingw. by NAKAMURA Takumi · 13 years ago
  89. 45dce81 test/CodeGenCXX/debug-info-namespace.cpp: Add explicit -fverbose-asm to cc1 to let cygming pass. by NAKAMURA Takumi · 13 years ago
  90. e099c00 Remove redeclaration of Invalid. The code that set this to true was updating an by Nick Lewycky · 13 years ago
  91. 7d4b159 Remove unused variable spotted by GCC. by Nick Lewycky · 13 years ago
  92. b79bf1d Remove unused variable, but keep function call with side-effect. by Nick Lewycky · 13 years ago
  93. 7f00f84 I updated this constructor's interface, and didn't have to fix any by Chandler Carruth · 13 years ago
  94. 7548beb Remove dead variable caught by GCC. by Nick Lewycky · 13 years ago
  95. 5ebd9fe Nuke stale code for separately importing the qualifer -- it's just part by Chandler Carruth · 13 years ago
  96. ba0f101 Remove dead variable, flagged by gcc's -Wunused-but-set-variable. by Nick Lewycky · 13 years ago
  97. 28ff4d6 Remove dead variable flagged by gcc's -Wunused-but-set-variable. No by Nick Lewycky · 13 years ago
  98. 635ca1b Remove a dead variable flagged by gcc's -Wunused-but-set-variable. No by Nick Lewycky · 13 years ago
  99. 7079886 Revise the representation of parameter scope data so that the by John McCall · 13 years ago
  100. 3aa8140 Add an optional field attached to a DeclRefExpr which points back to the by Chandler Carruth · 13 years ago