1. 096428b Don't claim that things that are Objective-C keywords if preceded by an @ are keywords unless they are preceded by an @. by David Chisnall · 14 years ago
  2. 6b0656a Eliminate the use of ObjCSuperExpr in code completion. by Douglas Gregor · 14 years ago
  3. 7d520ba There is no reason for dereferencing a pointer-to-member to require by Douglas Gregor · 14 years ago
  4. 43c0a4c Update Type::BitsRemainingInType by Douglas Gregor · 14 years ago
  5. 3a43d8d _Bool is not a keyword in C++. Fixes PR7388 and PR8349. by Douglas Gregor · 14 years ago
  6. 171dcdb Place conversion warnings for non-type template arguments under the by Douglas Gregor · 14 years ago
  7. db4d4bb Introduce a bit into Type that keeps track of whether there are any by Douglas Gregor · 14 years ago
  8. b535041 Fix a silly bug in the suppression of non-error diagnostics in a by Douglas Gregor · 14 years ago
  9. 35495eb Compute whether a type is variably modified as we build the type, by Douglas Gregor · 14 years ago
  10. 7b1ec6c Eliminates a clang warning. by Fariborz Jahanian · 14 years ago
  11. 4f036fa Call InitSections when assembling. This makes clang's output match that of by Rafael Espindola · 14 years ago
  12. 380aaa4 Preserve the original scope when picking the right scope for a friend by John McCall · 14 years ago
  13. 29ae6e5 Support friend function declarations in local classes correctly. by John McCall · 14 years ago
  14. 3bd5b6c Embrace C++ ABI 5.2.6 and consider that template instantiations don't have key functions (same as GCC). by Argyrios Kyrtzidis · 14 years ago
  15. 5f3aeb6 Teach the warning about unnamed/local types in template arguments to by Douglas Gregor · 14 years ago
  16. 9b62363 Introduce support for emitting diagnostics (warnings + their notes) by Douglas Gregor · 14 years ago
  17. cebbedd Fix debug info for anon union. This is tested by anon-union.exp. by Devang Patel · 14 years ago
  18. a2c21a2 Fix anon union member assignment expression's location. by Devang Patel · 14 years ago
  19. 337ec3d Handle dependent friends more explicitly and deal with the possibility by John McCall · 14 years ago
  20. 98efb9f PR8325: don't do destructor checking when a pointer is thrown. by Eli Friedman · 14 years ago
  21. df41f18 Enter the context of the declared function template when performing by John McCall · 14 years ago
  22. 3273b0c When finalizing a function template specialization following template by Douglas Gregor · 14 years ago
  23. 8cfb7a3 If we end up instantiating a function parameter whose default argument by Douglas Gregor · 14 years ago
  24. 75c29a0 fix PR7885, rejecting invalid uses of __builtin_constant_p. by Chris Lattner · 14 years ago
  25. 141ecfe Replace \r\n with \n in this file. by Nick Lewycky · 14 years ago
  26. d54eb44 Parse default arguments within member functions in source order, from by Douglas Gregor · 14 years ago
  27. 240a020 Pacify gcc-4.4. by Duncan Sands · 14 years ago
  28. cf2e506 C's comma operator performs lvalue conversion on both its operands; by John McCall · 14 years ago
  29. f9c5afb Flesh out test. by John McCall · 14 years ago
  30. 2bf6f49 I just do what the comments tell me to do. by John McCall · 14 years ago
  31. 12e9c6d fix the definition of __builtin_constant_p, the first arg isn't a short. by Chris Lattner · 14 years ago
  32. 2cd11fe Progress. by John McCall · 14 years ago
  33. c44fe4b This patch remove the Win32 XFAIL from remap-complete.c by Francois Pichet · 14 years ago
  34. 4cd912a When we load an ASTUnit from command-line arguments, hold on to the by Douglas Gregor · 14 years ago
  35. 9c4bb2c Fix spelling error. by Cameron Esfahani · 14 years ago
  36. 2a984ca Add some infrastructure for dealing with expressions of 'placeholder' type, by John McCall · 14 years ago
  37. fe8fdba Fixes a typo which caused byte offset in debug info by Fariborz Jahanian · 14 years ago
  38. 83e18f8 Basic: Tweak attempt to make version tags work from 'svn export's again, clip by Daniel Dunbar · 14 years ago
  39. 7171f2a Basic: Attempt to make version tags work from 'svn export's again. by Daniel Dunbar · 14 years ago
  40. 362ed70 Driver/Darwin: Remove a useless warning about missing runtime libraries. These by Daniel Dunbar · 14 years ago
  41. c7f3961 This test should now work on windows, since we're no longer using temporary files badly by Douglas Gregor · 14 years ago
  42. d1e6fdb Eliminate CIndexer::getClangPath(), since libclang no longer depends by Douglas Gregor · 14 years ago
  43. 535a55b Test for //rdar: //8493239 by Fariborz Jahanian · 14 years ago
  44. 8537f7b Some refactoring of property rewriting stuff by Fariborz Jahanian · 14 years ago
  45. a9f4f62 Eliminate the (de-)serialization of code completion results, now that by Douglas Gregor · 14 years ago
  46. d3ab63e Eliminate -fdiagnostics-binary and all of the infrastructure for by Douglas Gregor · 14 years ago
  47. 0692f83 by Devang Patel · 14 years ago
  48. e0cc52e Eliminate clang_codeComplete(). libclang clients should be using the by Douglas Gregor · 14 years ago
  49. 32be4a5 Switch c-index-test from clang_codeComplete() over to by Douglas Gregor · 14 years ago
  50. f2ad2c9 This patch does a few things in the area of objective-c by Fariborz Jahanian · 14 years ago
  51. 3a0be84 IRgen/Obj-C: Fix encoding of "long double". - The mind boggles. by Daniel Dunbar · 14 years ago
  52. 44414cf Merge encode-test-1.m into encode-test.m by Daniel Dunbar · 14 years ago
  53. e5ecb9c FileCheck'ize test. by Daniel Dunbar · 14 years ago
  54. b10daed Eliminate clang_setUseExternalASTGeneration() from libclang. Between by Douglas Gregor · 14 years ago
  55. 334d47e Add parsing support for Microsoft attributes. MS attributes will just be skipped and not inserted into the AST for now. by Francois Pichet · 14 years ago
  56. b241946 Add 2 Microsoft compiler intrinsics that don't require prototypes: by Francois Pichet · 14 years ago
  57. 9d520c5 Declare argv parameters as const char* const* instead of to char** to clarify that they are not modified, and to allow for string literals as arguments. by Axel Naumann · 14 years ago
  58. 7d0c4cc Tighten up constness of argv parameters to allow for string literals as argumants and to reflect actual (non-modifying) use. by Axel Naumann · 14 years ago
  59. 757e685 Per discussion with Sanjiv, remove the PIC16 target from mainline. When/if by Chris Lattner · 14 years ago
  60. 4505d89 comment out unused function by Chris Lattner · 14 years ago
  61. b7579aa be less threatening. by Chris Lattner · 14 years ago
  62. d2c47bd Make sure the VTables for template instantiations are emitted even if the key function doesn't have a body. by Argyrios Kyrtzidis · 14 years ago
  63. 6d57605 Don't let typeinfo name symbols be 'internal hidden', it can lead to linker conflicts by Argyrios Kyrtzidis · 14 years ago
  64. 2c6899f lib/CodeGen/CodeGenModule.cpp: DLLImportLinkage should be processed also on declaration. by NAKAMURA Takumi · 14 years ago
  65. 24da18f lib/Driver/Driver.cpp: Use the driver g++-4 for Cygwin-1.5. by NAKAMURA Takumi · 14 years ago
  66. 32df002 lib/Frontend/InitHeaderSearch.cpp: Fix compatibility to Cygming. by NAKAMURA Takumi · 14 years ago
  67. 16c5dea fix PR8217, a silent miscompilation of invalid code. by Chris Lattner · 14 years ago
  68. 9046c22 Allow a string literal to initialize a tail array (PR8217), patch by Chris Lattner · 14 years ago
  69. 08f7e67 Unbreak the CMake build. by Francois Pichet · 14 years ago
  70. 1c9e6b1 Add experimental chroot check which checks improper use of chroot(). Patch by by Zhongxing Xu · 14 years ago
  71. 1944ec1 Implement __builtin_ia32_vec_ext_v2si function (required by Qt). by Argyrios Kyrtzidis · 14 years ago
  72. cd7a30b lib/Driver/Tools.cpp: Disable cxa_atexit by default also on Cygwin. by NAKAMURA Takumi · 14 years ago
  73. ce2d186 Don't rely on a StringRef being null-terminated (it's not) for deprecation messages. by Benjamin Kramer · 14 years ago
  74. aa51e51 Add target implementations for the X86 builtins: by Bill Wendling · 14 years ago
  75. 83a1c5c Fixed __builtin_constant_p return type. by Abramo Bagnara · 14 years ago
  76. 1d1e70e Fix g++.dg regressions introduced at r115347 (rdar://8529993) by Argyrios Kyrtzidis · 14 years ago
  77. 90fb58e Secure this test against slightly different number formatters. by John McCall · 14 years ago
  78. 189d6ef Permit constant evaluation of const floating-point variables with by John McCall · 14 years ago
  79. 59705ae Add support for UCNs for character literals by Nico Weber · 14 years ago
  80. 1274ccd Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a by Douglas Gregor · 14 years ago
  81. 258bcbc Rename test name. by Fariborz Jahanian · 14 years ago
  82. f54e3ae Method implemented in class's implementation may implement by Fariborz Jahanian · 14 years ago
  83. 90fe4bc When dealing with an assignment with LHS being a property reference by Fariborz Jahanian · 14 years ago
  84. 642bfaa Improve XML output for class/struct/union declarations, from Martin Vejnar! by Douglas Gregor · 14 years ago
  85. 7780981 Fix a typo in the Clang man page, from Alexander Best. by Douglas Gregor · 14 years ago
  86. c56bb5d Revert the hack Chris Lattner added in r97981 to work around by Douglas Gregor · 14 years ago
  87. 022d13d This patch fixes multiple issues in clang's designated init builder and by Douglas Gregor · 14 years ago
  88. 5a9c0bc Fix the mapping of vertical-space cursor kinds to produce a newline, by Douglas Gregor · 14 years ago
  89. db45871 Try to disable this again. by Eric Christopher · 14 years ago
  90. 48615ff libclang: Disable LLVM pretty stack trace functionality, which inadvertently by Daniel Dunbar · 14 years ago
  91. ceb406d Disable this test temporarily in an attempt to green the buildbots. by Eric Christopher · 14 years ago
  92. cedbf43 Tighter check in r116060 blcoked enums also. Emit enum const's debug info. by Devang Patel · 14 years ago
  93. 4081a5c __attribute__((aligned(n))) directly specifies the alignment of a declaration by John McCall · 14 years ago
  94. 67c3226 Do not repeat debug info for file variable constants. by Devang Patel · 14 years ago
  95. aa3e6ba Fix three related, wily issues with the recompilation of precompiled preambles: by Douglas Gregor · 14 years ago
  96. a6eb5f8 When we encounter a '==' in a context expecting a '=', assume the user made a typo: by Argyrios Kyrtzidis · 14 years ago
  97. b4eb64d Track the location of the context requiring an implicit conversion and use it by John McCall · 14 years ago
  98. 9a2b9d7 Implement -fshort-enums (rdar://8490496). by Argyrios Kyrtzidis · 14 years ago
  99. 3951e71 Identify functions with prototype appropriately in debug info. by Devang Patel · 14 years ago
  100. 63b57ae Fix an infinite loop, caused by unintended syntax bug (the 'break;' after 'default:' was intended to break out of the while loop). by Argyrios Kyrtzidis · 14 years ago