aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Expand)Author
2010-06-26Implement support for #pragma message, patch by Michael Spencer!Chris Lattner
2010-06-26Change EmitReferenceBindingToExpr to take a decl instead of a boolean.Anders Carlsson
2010-06-26Add function for mangling reference temporaries.Anders Carlsson
2010-06-26Mangle pointer and (lvalue) reference types in the Microsoft C++ Mangler.Charles Davis
2010-06-26Add a missing dependency to try to fix a buildbot failure.Bob Wilson
2010-06-25Relax assertion since non-pod C++ classes are not aggregates, but still can a...Ted Kremenek
2010-06-25When a constant size array is casted to another type, its length should be sc...Jordy Rose
2010-06-25Use TypeSourceInfo to help determine the SourceRange of a CXXNewExpr. This f...Ted Kremenek
2010-06-25Add "checker caching" to GRExprEngine::CheckerVisit to progressively buildTed Kremenek
2010-06-25Fix -analyze-display-progress (once again), this time with an additional regr...Ted Kremenek
2010-06-25Minor change to my last patch to fix PR7490.Fariborz Jahanian
2010-06-25Translate numbers properly.Eric Christopher
2010-06-25IRGen for trivial initialization of dynamiccaly allocatedFariborz Jahanian
2010-06-25Change RegionStoreManager::Retrieve to infer the type of a symbolic region fr...Tom Care
2010-06-25build: Get CLANG_VERSION from Version.inc instead of depending on VER file di...Daniel Dunbar
2010-06-25Support NonTypeTemplateParmDecl for PCH.Argyrios Kyrtzidis
2010-06-25Make PCHWriter::FlushStmts() robust. If we added null Stmts, reading them bac...Argyrios Kyrtzidis
2010-06-25Support DependentTemplateSpecializationType and ElaboratedType for PCH.Argyrios Kyrtzidis
2010-06-25Add forgotten breaks in case statements.Argyrios Kyrtzidis
2010-06-25Support UnresolvedLookupExpr for PCH.Argyrios Kyrtzidis
2010-06-25Support UnresolvedMemberExpr for PCH.Argyrios Kyrtzidis
2010-06-25Print source location when we encounter unhandled statement during PCH writing.Argyrios Kyrtzidis
2010-06-25Implement dependent alignment attribute support. This is a bit gross given theChandler Carruth
2010-06-25Add comment for my last patch.Fariborz Jahanian
2010-06-25Fixed another double-char in PPC-specific asm constraints.John Thompson
2010-06-24Added PPC-specific asm constraints, PS3 configuration changes.John Thompson
2010-06-24Remove HAS_TLS define.Eric Christopher
2010-06-24Fixes a regression when redeclaration of a global satic Fariborz Jahanian
2010-06-24Return null pointer instead of 'false' (fixes clang warning).Ted Kremenek
2010-06-24Add check for illegal whence argument of fseek.Zhongxing Xu
2010-06-24Should return stateNotNull.Zhongxing Xu
2010-06-24Let StreamChecker::CheckNullStream() return a GRState after successful check.Zhongxing Xu
2010-06-24Support a couple more C++ Exprs for PCH.Argyrios Kyrtzidis
2010-06-24Fix broken de/serialization for a couple of C++ Exprs.Argyrios Kyrtzidis
2010-06-24More clang support for darwin tls. Add a __has_feature macro andEric Christopher
2010-06-24Patch to correctly mangle block helper functionsFariborz Jahanian
2010-06-23Add 'VisitEndAnalysis' callback to Checker class. This callback is called by...Ted Kremenek
2010-06-23Add parentheses suggested by gcc.Duncan Sands
2010-06-23Driver: Add make variable to allow disabling default integrated assembler, tillDaniel Dunbar
2010-06-23Support C++ class template specializations and partial specializations for PCH.Argyrios Kyrtzidis
2010-06-23Modify ClassTemplateSpecializationDecl and ClassTemplatePartialSpecialization...Argyrios Kyrtzidis
2010-06-23improve altivec vector bool/pixel support, patch by Anton YartsevChris Lattner
2010-06-23polish the -finstrument-functions implementation, patch by Nelson Elhage!Chris Lattner
2010-06-23add comments.Zhongxing Xu
2010-06-23add comments.Zhongxing Xu
2010-06-22Correctly construct an ElementRegion for alloca() + pointer arithmetic. Fixe...Ted Kremenek
2010-06-22String literals enclosed in parentheses are still stringDouglas Gregor
2010-06-22Make c++ and C++ valid extensions for C++ source files, from Seth Cantrell!Douglas Gregor
2010-06-22Vector types are not arithmetic types, either. Note that we now banDouglas Gregor
2010-06-22Patch to provide separate ASTs for multiple ObjC class extension Fariborz Jahanian