1. 9ebfa31 CIndex: Normalize formatting some more. by Daniel Dunbar · 15 years ago
  2. f99ce1e Clean up BuiltinBug class. by Zhongxing Xu · 15 years ago
  3. 625e4ef c-index-test: Split "function scanning" behavior into its own "filter" -- its by Daniel Dunbar · 15 years ago
  4. ada487d Add c-index-test -test-load-source, which loads the translation unit from a source file (and other command line arguments). by Daniel Dunbar · 15 years ago
  5. 94a3900 Allocate MultipleDC objects using the allocator associated with by Ted Kremenek · 15 years ago
  6. e1599ce Fix and test for a problem caught by the clang-on-clang buildbot: qualified by John McCall · 15 years ago
  7. 1a5e0d7 Have ASTRecordLayout keep track of the key function, in preparation of fixing a synthetic ctor/dtor bug. by Anders Carlsson · 15 years ago
  8. 7dafdf5 Remove all of Sema's explicit uses of OverloadedFunctionDecl except for by John McCall · 15 years ago
  9. 129e2df Eliminate the use of OverloadedFunctionDecl in member expressions. by John McCall · 15 years ago
  10. abce699 Test for my last patch. by Fariborz Jahanian · 15 years ago
  11. ba2253f More support for virtual destructor calls. Fixes pr5619 by Fariborz Jahanian · 15 years ago
  12. 3790980 When we're trying to define an implicit virtual destructor, make sure that we have a valid delete operator. by Anders Carlsson · 15 years ago
  13. acca725 Reindent buffer, switches in particular were totally out of style. by Daniel Dunbar · 15 years ago
  14. 0d7dd22 Strip trailing space. by Daniel Dunbar · 15 years ago
  15. 6515afe Add const to accessors that don't modify the object. by Mike Stump · 15 years ago
  16. f71d232 Reflow comments and fix 80-col violation. by Mike Stump · 15 years ago
  17. 30e682e Add missing assignment operator to test, and add tests for while loops and for by Daniel Dunbar · 15 years ago
  18. 0121fbd Fix an assert. by Anders Carlsson · 15 years ago
  19. 8d2c0a9 Fix a crash when ivar type is a __strong SEL. Fallout from by Fariborz Jahanian · 15 years ago
  20. f64e44c Add more sophisticated test for destruction order of C++ temporaries, please by Daniel Dunbar · 15 years ago
  21. bb377ed Use StringRef in Attr constructors. by Benjamin Kramer · 15 years ago
  22. 47491f8 Eliminate another VISIBILITY_HIDDEN by Douglas Gregor · 15 years ago
  23. 006b0eb Adapt to the DOTGraphTraits changes in LLVM. by Tobias Grosser · 15 years ago
  24. 9deb313 clang-cc: Add code (currently disabled) for parsing arguments using clang -cc1 functionality instead of LLVM's CommandLine. by Daniel Dunbar · 15 years ago
  25. 3b31526 Add CodeGenOptions::{SoftFloat,FloatABI}, and update the all the (far too many) places to use this instead of using the backend -soft-float and -float-abi= options. by Daniel Dunbar · 15 years ago
  26. 39ed0b6 clang -cc1: Fix initialization of PreprocessorOptions::TokenCache. by Daniel Dunbar · 15 years ago
  27. c238955 Add TextDiagnosticBuffer::FlushDiagnostics, for forwarding the buffered diagnostics to a different diagnostics engine. by Daniel Dunbar · 15 years ago
  28. 43030a7 clang -cc1: Fix -include-pch now that the test code is in clang-cc. by Daniel Dunbar · 15 years ago
  29. 1c5944c clang -cc1: Initialize LangOptions::{Optimize,NoInline} by Daniel Dunbar · 15 years ago
  30. 78d5590 Use '-FOO' 'BAR' instead of '-FOO=BAR' in tests. by Daniel Dunbar · 15 years ago
  31. a28690e Always pass -fmessage-length using separate arguments. by Daniel Dunbar · 15 years ago
  32. 2d8f3e8 clang -cc1: Initialize LangOptions::DollarIdents correctly. by Daniel Dunbar · 15 years ago
  33. 1bc5c03 Don't try to generate common globals for C++ files, instead of depending on the FE to set NoCommon, and simplify CodeGenOptions initialization. by Daniel Dunbar · 15 years ago
  34. b33fbaa Eliminate CodeGenOptions::TimePasses. by Daniel Dunbar · 15 years ago
  35. 3636e1d Eliminate CodeGenOptions::SimplifyLibCalls. by Daniel Dunbar · 15 years ago
  36. ae8e17e Simplify. by Daniel Dunbar · 15 years ago
  37. c88aa79 Put CompilerInvocation testing code in clang-cc instead of clang for now, I can't bear to link all of clang into 'clang' yet. :) by Daniel Dunbar · 15 years ago
  38. 6e29014 Fix PR5633 by making the preprocessor handle the case where we can by Chris Lattner · 15 years ago
  39. 76ed1f7 Minor cleanup (no functionality change). by Eli Friedman · 15 years ago
  40. 9e61240 clang -cc1: Use proper diagnostics for all parsing errors. by Daniel Dunbar · 15 years ago
  41. 2da84ff Don't pass false (default) for isVolatile parameter to CreateLoad. by Daniel Dunbar · 15 years ago
  42. 007b567 Explicitly use setVolatile instead of extra IRBuilder argument. by Daniel Dunbar · 15 years ago
  43. 7fda03b Don't pass false (default) for isVolatile parameter to CreateStore. by Daniel Dunbar · 15 years ago
  44. e032452 Change CompilerInvocation::CreateFromArgs to report errors using a proper diagnostic engine. by Daniel Dunbar · 15 years ago
  45. 4cbe3b6 Simplify. by Daniel Dunbar · 15 years ago
  46. 545c281 Change CompilerInvocation::CreateFromArgs to take Argv0 and the address of main (or something in the main executable) so it can find the builtin compiler files. by Daniel Dunbar · 15 years ago
  47. 660cc18 Remove useless c_str() calls in SemaCodeComplete. by Benjamin Kramer · 15 years ago
  48. 56a44f7 Simplify code. No functionality change. by Benjamin Kramer · 15 years ago
  49. f017173 Port BugReporter and BugType to StringRef. by Benjamin Kramer · 15 years ago
  50. 4988a9a Kill some unnecessary calls to c_str(). by Benjamin Kramer · 15 years ago
  51. ab6b940 Kill off clang/win32 which contains the hand generated Visual Studio project files. These files are severely out of date and have been superseded by the CMake build system. RIP. by Kovarththanan Rajaratnam · 15 years ago
  52. e7f2cbd remove stall comment by Nuno Lopes · 15 years ago
  53. 2024f4d Streamline Stmt::CollectingStats() and Decl::CollectingStats(). No functionality change. by Kovarththanan Rajaratnam · 15 years ago
  54. 7d8a782 Don't call Decl::CollectingStats(false) and Stmt::CollectingStats(false). When called with false these functions return whether statistics are enabled. They don't change any state. Since we're not using the return value avoid calling them in the first place. by Kovarththanan Rajaratnam · 15 years ago
  55. cd39712 Remove empty test directory. lit was moved to llvm/utils/lit in r82524 by Kovarththanan Rajaratnam · 15 years ago
  56. f79bafa This patch moves the frontend timer from clang-cc into CompilerInstance. by Kovarththanan Rajaratnam · 15 years ago
  57. 63db522 Use '-FOO' 'BAR' instead of '-FOO=BAR' for FOO in -stack-protector, -fvisibility, and -fconstant-string-class. by Daniel Dunbar · 15 years ago
  58. 8a90ac0 Normalize options to use '-FOO' instead of '--FOO'. by Daniel Dunbar · 15 years ago
  59. 433dd49 Remove unnecessary -fblocks=0. by Daniel Dunbar · 15 years ago
  60. 682899d Use '-x' 'foo' instead of '-x=foo'. by Daniel Dunbar · 15 years ago
  61. ce6bf1e clang -cc1: Allow -triple= as an alias for -triple, -code-compiletion-at= as an alias for -code-completion-at, and spell "-std=" option correctly. by Daniel Dunbar · 15 years ago
  62. be8d813 Use '-o' '-' instead of '-o=-' in tests. by Daniel Dunbar · 15 years ago
  63. a75a92d Remove unnecessary -fms-extensions=0 from tests (this command line syntax is going away). by Daniel Dunbar · 15 years ago
  64. 3e518bd Add DeclarationName support for C++0x operator literals. They should now work as by Sean Hunt · 15 years ago
  65. f219e7c Move LLVM backend options to explicit clang-cc / clang -cc1 options, which we then manually pass to the command line library; eventually the latter grossness should be fixed by a real API when creating the target machine. by Daniel Dunbar · 15 years ago
  66. ede538f Update checker build. by Ted Kremenek · 15 years ago
  67. d4daa7c Fix null dereference in UndefResultChecker identified by running the analyzer over Postgresql. by Ted Kremenek · 15 years ago
  68. e50c167 Add clang -cc1 parsing for LangOptions. by Daniel Dunbar · 15 years ago
  69. 87e2496 clang-cc: Tweak LangOptions parsing to make it a bit more obvious what depends on what. by Daniel Dunbar · 15 years ago
  70. f4fdd9b Fix 80-cols violations by Sean Hunt · 15 years ago
  71. 7674352 clang-cc: Change -fsigned-char=0 to -fno-unsigned-char and pass -pic-level using separate args. by Daniel Dunbar · 15 years ago
  72. fb43510 Add missing accessors. by Daniel Dunbar · 15 years ago
  73. 1b09695 Change LangOptions::ObjCConstantStringClass to an std::string to avoid worrying about the lifetime. by Daniel Dunbar · 15 years ago
  74. 7d065d0 Move MainFileName option variable into CodeGenOptions instead of LangOptions. by Daniel Dunbar · 15 years ago
  75. 85b4521 Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. by Benjamin Kramer · 15 years ago
  76. 770b4a8 Remove VISIBILITY_HIDDEN from lib/AST. by Benjamin Kramer · 15 years ago
  77. 59c55e7 This patch adds a PUNCTUATOR macro (specialization of TOK) in TokenKinds.def and makes use of it in tok::getTokenSimpleSpelling. by Kovarththanan Rajaratnam · 15 years ago
  78. 1495944 Cleanup llvm/Support/Compiler.h include in header files by Kovarththanan Rajaratnam · 15 years ago
  79. 6e8c7ac cleanup parsing of MS integer suffixes a little. this fixes PR5616 by Nuno Lopes · 15 years ago
  80. 408ac17 Missed a forward declaration. by Benjamin Kramer · 15 years ago
  81. 5865288 Cleanup includes and forward decls. by Benjamin Kramer · 15 years ago
  82. bd21828 Remove VISIBILITY_HIDDEN from anonymous namespaces in libFrontend. by Benjamin Kramer · 15 years ago
  83. 0c5db87 Remove unneeded includes. by Benjamin Kramer · 15 years ago
  84. 1a9724b Don't call exit(). llvm::llvm_report_error() will do just that by Kovarththanan Rajaratnam · 15 years ago
  85. e6252d1 Fix test and handle IK_LiteralOperatorId in a few more places. by Sean Hunt · 15 years ago
  86. d06ab9d Move program actions implications to clang::InitializeFrontendOptions which already contains such logic. by Kovarththanan Rajaratnam · 15 years ago
  87. ba5fb5a lib/Analysis: Remove VISIBILITY_HIDDEN from definitions in anonymous namespace by Kovarththanan Rajaratnam · 15 years ago
  88. 0486d74 Add Parser support for C++0x literal operators ('operator "" i'). by Sean Hunt · 15 years ago
  89. fa3e82b Tests now pass with the assertion. by Eli Friedman · 15 years ago
  90. 8432f25 Add a much more thorough test of casts to virtual bases, and fix by Eli Friedman · 15 years ago
  91. 724e3e2 We always want to create a virtual function pointer entry if the path from the derived return value to the base overridden return value contains a virtual base class. by Anders Carlsson · 15 years ago
  92. 1fb7cf9 Add an iterator for walking the primary base chain. by Anders Carlsson · 15 years ago
  93. 27f69d0 Move the vtable builder to an anonymous namespace. by Anders Carlsson · 15 years ago
  94. 261fba6 Use a PointerIntPair for the PrimaryBaseInfo. Yay for clever LLVM data structures! by Anders Carlsson · 15 years ago
  95. ce2009a Add a new PrimaryBaseInfo struct that combines the record decl of a primary base with whether it's virtual or not. by Anders Carlsson · 15 years ago
  96. d6b07fb Don't build the entire vtable when all we want is the index of a virtual method. by Anders Carlsson · 15 years ago
  97. 83d5a2a Fix typo, thanks Sebastian! by Daniel Dunbar · 15 years ago
  98. b8bef26 Simplify. by Daniel Dunbar · 15 years ago
  99. 9b37274 Some member pointer casting tests. by Eli Friedman · 15 years ago
  100. c6fdb776 Add case for CK_DerivedToBaseMemberPointer cast kind to by Eli Friedman · 15 years ago