- ea26cb5 Prep work to always preallocate BlockDeclRefExprs so that we can by Mike Stump · 15 years ago
- 3c50bfe Revert those last two commits. Beware the treacherous semicolon. by John McCall · 15 years ago
- 1dc9acd Preserve type source information when substituting into ParmVarDecls. by John McCall · 15 years ago
- 71e2bf9 Preserve type source information when substituting into FieldDecls. by John McCall · 15 years ago
- 0a5fa06 Preserve source information when substituting into VarDecls. by John McCall · 15 years ago
- cd7ba1c Clone Sema::SubstType for DeclaratorInfos. by John McCall · 15 years ago
- 4802a31 Initialize using the base location provided by the derived implementation, by John McCall · 15 years ago
- 04c688a Fix 80-col violation. by Mike Stump · 15 years ago
- a2becad Rewrite TreeTransform to transform types as DeclaratorInfos rather than as bare by John McCall · 15 years ago
- 109de5e Add TypeLocBuilder, an API for incrementally creating TypeLocs. Change by John McCall · 15 years ago
- bb833dc Publicize getSigilLoc / setSigilLoc for better metaprogramming. by John McCall · 15 years ago
- da9b30e Remove stale comment and tighten code. by Ted Kremenek · 15 years ago
- cd6cdeb Add FIXME. by Ted Kremenek · 15 years ago
- 0ba497b Use llvm::OwningPtr in CFGBuilder, fixing a leak on an error path. by Ted Kremenek · 15 years ago
- 48620ba Code-gen for CXXZeroInitValueExpr AST passed by Fariborz Jahanian · 15 years ago
- 7053485 Change ResolveAddressOfOverloadedFunction to support TemplateIdRefExpr. No testcase yet because FixOverloadedFunctionReference needs to be updated too. Doug, plz review. by Anders Carlsson · 15 years ago
- 4009297 Fix the 32-bit ABI to return structures with non-trivial copy ctors or dtors indirectly. by Anders Carlsson · 15 years ago
- 58f5ec7 Add destructor and cleanup code to LocationContext (fixing some leaks). Along the way, have by Ted Kremenek · 15 years ago
- 3a9f03d Updated, we support == and != builtins for member pointers. by Fariborz Jahanian · 15 years ago
- 0937097 Changes to reflect more pointer-to-member support. by Fariborz Jahanian · 15 years ago
- bf1914b For now, we need to have the llvm type of the block pointer remain as by Mike Stump · 15 years ago
- 2357da0 Moved comment to its proper place in my last patch. by Fariborz Jahanian · 15 years ago
- 8577c98 Patch implements ranking conversions between member pointers [over.ics.rank] by Fariborz Jahanian · 15 years ago
- ca80a5f Do not eagerly cache DITypes because it allows real struct type to be shadowed by forward declared struct type. by Devang Patel · 15 years ago
- 74782b0 Driver: If unable to find the gcc tool chain, try the next OS rev. by Daniel Dunbar · 15 years ago
- f6a39b7 Encode global variable name in debug info. by Devang Patel · 15 years ago
- 2b6c731 Add missing semi-colon. by Daniel Dunbar · 15 years ago
- 2b1f291 Changed text of warning in my last patch. by Fariborz Jahanian · 15 years ago
- 7ee68bd Bring Darwin into the switch-case statement instead of its own if for readability. by Edward O'Callaghan · 15 years ago
- 209a8c2 Issue warning if method body starts with a semicolon. by Fariborz Jahanian · 15 years ago
- b4ece63 Add an example to help claify the process/assumptions... by Steve Naroff · 15 years ago
- e56b4ba by Steve Naroff · 15 years ago
- 73c39ab Remove default argument for ImpCastExprToType. Add appropriate argument by Eli Friedman · 15 years ago
- 90556e3 Call 'clear()' in ~RopePieceBTreeLeaf(), decrementing the reference by Ted Kremenek · 15 years ago
- 6cd2198 Handle substitutions into the "first qualifier in scope" of a by Douglas Gregor · 15 years ago
- 8f99993 Revert 84601. Looks like it was causing failures on some systems. by Ted Kremenek · 15 years ago
- 375e69c BumpVectorContext: Use 'unsigned' integer type with PointerIntUnion instead of bool to keep it clear that we are reasoning about an unsigned integer with a single bit. by Ted Kremenek · 15 years ago
- 0a026af Implement PR5242: don't desugar a type more than once in a diagnostic. This by Chris Lattner · 15 years ago
- b54d8af teach FormatDiagnostic to aggregate previously formatted arguments and by Chris Lattner · 15 years ago
- 01fbef6 Fix a reference count imbalance in RewriteRope::MakeRopeString(). by Ted Kremenek · 15 years ago
- 9cf9f86 code cleanup, convert if tree to switch etc. by Chris Lattner · 15 years ago
- adaaad3 Refine the type of the first parameter to block invoke functions. by Mike Stump · 15 years ago
- 9a2c8bb Force triple for test. by Anders Carlsson · 15 years ago
- ab22ee9 RegionStore: Use the *default* binding (instead of the *direct* binding) of an Objective-C object by Ted Kremenek · 15 years ago
- e973183 retain/release checker: allow 'new', 'copy', 'alloc', 'init' prefix to start before '_' when determining Cocoa fundamental rule. by Ted Kremenek · 15 years ago
- 035c46f Builtin candidate minimization for <<=, >>= and the rest. by Fariborz Jahanian · 15 years ago
- c46e463 Fix inverted preprocessor guard, and fix the resulting compiler error that was unmasked. by Ted Kremenek · 15 years ago
- 1374598 Really fix <rdar://problem/7312058> by adding a 'displayDiagnostics' option to by Ted Kremenek · 15 years ago
- dd62b15 Parse a simple-template-id following a '~' when calling a destructor, e.g., by Douglas Gregor · 15 years ago
- fc06221 The constructor for ASTUnit now takes a DiagnosticClient*, allowing uses of ASTUnit to specify by Ted Kremenek · 15 years ago
- 8621d01 Add the built-in candidate set reduction hueristic by Fariborz Jahanian · 15 years ago
- 49358d8 Re-order includes so that the logic involving '#ifdef LLVM_ON_WIN32' appears after the main #includes. The ultimate solution is to just use LLVM-portable methods in llvm/System. by Ted Kremenek · 15 years ago
- 3759a03 Copy conversion of an expression to its base class by Fariborz Jahanian · 15 years ago
- 86aa0cd Handle emitting the assignment operator when the lhs is a reference. Fixes PR5227. by Anders Carlsson · 15 years ago
- da921fd Set the cast kind to CK_NoOp for C-style casts that are really const casts. Fixes PR5248. by Anders Carlsson · 15 years ago
- 36c4464 Move Diagnostic/DiagClient/FileManager from Indexer => ASTUnit. by Steve Naroff · 15 years ago
- bade7de Change indenting for case/compound statements to conform to the rest of clang. by Steve Naroff · 15 years ago
- c5a9e95 CIndex: make variable non-static to avoid potential race conditions, per by Benjamin Kramer · 15 years ago
- 06d1072 Workaround a bug exposed by the FileCheckify of message-length.c, the caret end by Daniel Dunbar · 15 years ago
- ff430e6 AuroraUX toolchain should call GNU assembler not the Solaris assembler. by Edward O'Callaghan · 15 years ago
- acfd65d convert this to FileCheck, PR5232 by Chris Lattner · 15 years ago
- c575ce7 Avoid std::string concatenation. by Daniel Dunbar · 15 years ago
- 45475c6 Update NamedDecl::getName() to work for empty names. by Daniel Dunbar · 15 years ago
- 259e9cc Twinify CodeGenFunction::CreateTempAlloca by Daniel Dunbar · 15 years ago
- d0c10e2 Add ObjCImplementationDecl::getName() for consistency, with FIXME. by Daniel Dunbar · 15 years ago
- b409e2d Add FIXME calling for rename of NamedDecl::getNameAsString. by Daniel Dunbar · 15 years ago
- a4ee442 Suppress build warning. by Daniel Dunbar · 15 years ago
- e1b7ea1 When binding a reference to a temporary, it's important that other temporaries created as on the RHS are destroyed before emitting the dtor for the temporary. by Anders Carlsson · 15 years ago
- f67cea8 Fix tyop noticed by Sean Hunt. by Anders Carlsson · 15 years ago
- 4fa2684 When building a cast argument, make sure to bind the result to a temporary. by Anders Carlsson · 15 years ago
- 01eb9b9 PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients by Daniel Dunbar · 15 years ago
- fa4f550 Convert temporaries.cpp to using FileCheck. by Anders Carlsson · 15 years ago
- bd339f7 Add test for OpenCL vector initializer codegen by Nate Begeman · 15 years ago
- 8dafd5f Rename temp-1.cpp to temporaries.cpp. by Anders Carlsson · 15 years ago
- 9c29bf5 Twinify CGObjCMac, this simplifies the code and should reduce std::string by Daniel Dunbar · 15 years ago
- bb378cb Use CK_BitCast for member function pointer casts. Fixes PR5138. by Anders Carlsson · 15 years ago
- 5ffe14c Move misc clients to IdentifierInfo StringRef API. by Daniel Dunbar · 15 years ago
- e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 15 years ago
- b5217ef Add ObjCCategoryImplDecl::getName() -> StringRef, and a FIXME. by Daniel Dunbar · 15 years ago
- 0533b30 Support IRgen of OpenCL vector initializers, ensuring the resulting IR is in a by Nate Begeman · 15 years ago
- 63444b3 Try to unbreak MSVC build. by Benjamin Kramer · 15 years ago
- 2782302 It's OK for a pure virtual function to override another pure virtual function. Fixes PR5222. by Anders Carlsson · 15 years ago
- c6b2916 Add FloatingCast to getCastKindName's list. by Benjamin Kramer · 15 years ago
- 4e0e2f1 non-POD members => make it a class (also silences MSVC warnings) by Benjamin Kramer · 15 years ago
- 82debc7 Add some more cast kinds. by Anders Carlsson · 15 years ago
- b14346b CIndex: fix typo. by Benjamin Kramer · 15 years ago
- edcd828 Missed a paren. by Benjamin Kramer · 15 years ago
- 20d7581 CIndex: add a (untested) WIN32 codepath to get ClangPath. by Benjamin Kramer · 15 years ago
- 5e4bc59 CIndex: compute ClangPath lazily. by Benjamin Kramer · 15 years ago
- 329763b add support for codegening CXXZeroInitValueExprs by Nuno Lopes · 15 years ago
- cf8aac3 Ignore all the test output directories that lit generates. by Sebastian Redl · 15 years ago
- 991f9a7 The AuroraUX toolchain has conflicting wchar_t between the system stdlib.h header and the clang stddef.h header where clang was defining as int where we use long. by Edward O'Callaghan · 15 years ago
- 4a630d3 Use sys::Path::eraseFromDisk instead of unlink as suggested by Chris. by Benjamin Kramer · 15 years ago
- 0829a83 CIndex: replace fork/exec with our portable ExecuteAndWait wrapper. by Benjamin Kramer · 15 years ago
- 9670762 CIndex: avoid a dangling pointer issue. by Benjamin Kramer · 15 years ago
- 49a832b When performing template-substitution into a type, don't just replace the by John McCall · 15 years ago
- 6800b33 use DenseSet instead of SmallSet. by Zhongxing Xu · 15 years ago
- ecfa8d2 Add NameDecl::getName() -> StringRef. by Daniel Dunbar · 15 years ago
- 2ad3289 Add another two ExtVectorComponent FIXMEs. by Daniel Dunbar · 15 years ago
- 4b55b24 Switch ExtVectorElementExpr::getEncodedElementAccess to use StringRef. by Daniel Dunbar · 15 years ago