- edcfc41 Allow clang to pass -x cl through to compiler driver. by Nate Begeman · 15 years ago
- 2849734 Disallow captured arrays in blocks as well. Radar 7438948. by Mike Stump · 15 years ago
- 0d6fd57 Disallow capturing vlas inside blocks. by Mike Stump · 15 years ago
- de0d263 Make static analysis support for C++ 'this' expression context-sensitive. Essentially treat 'this' as a implicit parameter to the method call, and associate a region with it. by Ted Kremenek · 15 years ago
- 6ffe643 fix a bug mike noticed. by Chris Lattner · 15 years ago
- 32a5808 Remove references to 'Checker' and 'GRTransferFuncs' from by Ted Kremenek · 15 years ago
- 3b11fd3 Remember if the AsmStmt came from Microsoft-style inline assembly code. by Mike Stump · 15 years ago
- 4424713 Make sure to use ASTContext::getAs*ArrayType() when decomposing array by Douglas Gregor · 15 years ago
- f8c381f Add missing newline (which breaks MSVC build???) by Daniel Dunbar · 15 years ago
- 88a3586 Teach Preprocessor::macro_begin/macro_end to lazily load all macro by Douglas Gregor · 15 years ago
- 95ff742 When declaring an Objective-C implementation without a corresponding by Douglas Gregor · 15 years ago
- f06cdae Implement typo correction for a variety of Objective-C-specific constructs: by Douglas Gregor · 15 years ago
- c171e3b Typo correction for C99 designated field initializers, e.g., by Douglas Gregor · 15 years ago
- be2e205 Make sure that an overriding return type is complete before checking if it's covariant. Fixes PR5920. by Anders Carlsson · 15 years ago
- fe0241e Typo correction for C++ base and member initializers, e.g., by Douglas Gregor · 15 years ago
- bfea239 Typo correction for template names, e.g., by Douglas Gregor · 15 years ago
- b94b81a Let constraint manager inform checkers that some assumption logic has happend. by Zhongxing Xu · 15 years ago
- bb092ba Implement typo correction for id-expressions, e.g., by Douglas Gregor · 15 years ago
- f2017d1 Fix a comment. by Zhongxing Xu · 15 years ago
- 546be3c Typo correction for type names when they appear in declarations, e.g., given by Douglas Gregor · 15 years ago
- e724246 More fixes to the handling of CVR-comparisons on array types. Adds a method to by Chandler Carruth · 15 years ago
- 5126fd0 Typedefs can be redeclared. That seems like something we should record in by John McCall · 15 years ago
- 2333f77 Make sure to explicitly pass type/value dependence to Expr constructor. This by Eli Friedman · 15 years ago
- 28e318c Correctly refer to element CVR qualifications when determining if a type is by Chandler Carruth · 15 years ago
- f5f7d86 Get rid of FixedWidthIntType, as suggested by Chris and Eli. by Anders Carlsson · 15 years ago
- 2d3dfd7 Adjust indentation. by Zhongxing Xu · 15 years ago
- 0235d15 Make sure operator new[] and operator delete[] match. This will hopefully silence 3 remaining MSVC warnings. by Benjamin Kramer · 15 years ago
- 7557a13 Egregious, disgusting workaround for PR5866. We need to rework how we by Douglas Gregor · 15 years ago
- 6675586 Tweak the text of several main() diagnostics and punch a hole specifically for by John McCall · 15 years ago
- 94c939d Diagnose out-of-bounds floating-point constants. Fixes rdar://problem/6974641 by John McCall · 15 years ago
- 62d399e As Ted suggested, record the callsite information with the StackFrameContext. by Zhongxing Xu · 15 years ago
- bfbcefb Enhance dataflow analyses to recognize branch statements in the CFG used as hooks for the initialization of condition variables. by Ted Kremenek · 15 years ago
- 598278b Inter-procedural analysis: now we can return from the callee. by Zhongxing Xu · 15 years ago
- 6281213 Fix bug I just introduced in ForStmt::child_end() where we could iterate off into garbage values. by Ted Kremenek · 15 years ago
- f0d975f Coelesce 'DoDestroy()' methods in Stmt.cpp, and modify the child_iterator returned by ForStmt to include the initializer of the condition variable. by Ted Kremenek · 15 years ago
- 7d02b8c Modify WhileStmt::child_begin()/child_end() to include the initializer for the condition variable. by Ted Kremenek · 15 years ago
- fcfb503 Teach GRExprEngine to handle the initialization of the condition variable of a SwitchStmt. by Ted Kremenek · 15 years ago
- 35628d1 Add StmtIterator support for iterating over both the condition by Ted Kremenek · 15 years ago
- 036aed1 When we see a CXXDefaultArgExpr during template instantiation, rebuild by Douglas Gregor · 15 years ago
- b03f630 Increase StmtIterator size by one pointer (separating out the Stmt** from the union including Decl* and Decl**). by Ted Kremenek · 15 years ago
- 765ccba Diagnose the use of incomplete types in C++ typeid expressions by Douglas Gregor · 15 years ago
- 4718e67 update comments by Chris Lattner · 15 years ago
- a3b089e switch -Werror/-Wfatal-errors error conditions to use diagnostics instead by Chris Lattner · 15 years ago
- 65222e8 When using a default function argument for a function template (or by Douglas Gregor · 15 years ago
- 49ac8e6 Remove RewriteBlocks. It has been superseded by RewriteObjC by Kovarththanan Rajaratnam · 15 years ago
- ab470d1 Don't disable smart pointers, silly by Douglas Gregor · 15 years ago
- e1a5c17 Fix DISABLE_SMART_POINTERS build by Douglas Gregor · 15 years ago
- 3ff8481 Migrate the call inliner to the Checker interface. by Zhongxing Xu · 15 years ago
- e7809d4 Add 'DeclStmt::DoDestroy()' which doesn't actually recurse over its child expressions (via StmtIterator), as those expressions are owned by the Decls and Types (which are destroyed elsewhere). This fixes a crasher reported in <rdar://problem/7487294>. by Ted Kremenek · 15 years ago
- 61dfbec Add CFG support for the condition variable that can appear in IfStmts in C++ mode. by Ted Kremenek · 15 years ago
- e383768 Fix CXXConstructExpr::getSourceRange() to not include the source ranges of CXXDefaultArgExprs when computing its range (since these expressions have no source range, and using them will make the encompassing range invalid). by Ted Kremenek · 15 years ago
- 775f2eb Remove CharUnits::toString() to eliminate dependence on <string>. by Ken Dyck · 15 years ago
- a5083e6 Add assertion to check for valid source ranges. by Ted Kremenek · 15 years ago
- 1bda434 Driver: Drop ToolChain::getHost() by Daniel Dunbar · 15 years ago
- 949bdb4 Add basic support for analyzing CastExprs as lvalues. by Ted Kremenek · 15 years ago
- f857798 warn when attribute warn_unused_result is applied to void functions. by Nuno Lopes · 15 years ago
- f360138 Driver: When linking, don't warn about unused arguments which are obviously only by Daniel Dunbar · 15 years ago
- e663c72 implement -W[no-]fatal-errors, patch by Christian Adåker! by Chris Lattner · 15 years ago
- aae57c2 accept -Wcomments as an alias for -Wcomment, PR5855 by Chris Lattner · 15 years ago
- 38ac4f5 Add transfer functions support for visiting an Objective-C message expression as an lvalue when the return type is a C++ reference. by Ted Kremenek · 15 years ago
- bdc601b Move the implementation of ASTContext::getTypeSizeInChars() to the .cpp file to by Ken Dyck · 15 years ago
- a236a55 Stop diagnosing the use of inner classes as friends. ddunbar asked whether by John McCall · 15 years ago
- 9e9199d Eliminate the ASTContext argument to CXXConstructorDecl::isCopyConstructor, since the context is available in the Decl by Douglas Gregor · 15 years ago
- a91320b ARM: Honor -mfpu= and set __VFP_FP__ and __ARM_NEON__ "correctly". by Daniel Dunbar · 15 years ago
- 4b52e25 When a template-id refers to a single function template, and the by Douglas Gregor · 15 years ago
- ee788e7 Add ToolChain::getDriver() and use it instead of going through the HostInfo by Daniel Dunbar · 15 years ago
- d20254f fix PR4010: add support for the warn_unused_result for function pointers by Nuno Lopes · 15 years ago
- f936815 Don't inject the class name until that magical lbrace. by John McCall · 15 years ago
- bd0dfa5 Parse base specifiers within the scope of the class. This is possibly not by John McCall · 15 years ago
- 6ecc0b5 Remove another ';' after method definition. by Daniel Dunbar · 15 years ago
- 7177dee Remove ';' after method definition. Noticed by clang++, which one would think by Daniel Dunbar · 15 years ago
- 7a1dc56 Refactor to remove more dependencies on PreDeclaratorDC. I seem to have made by John McCall · 15 years ago
- 17ef166 Fix tyop. by Anders Carlsson · 15 years ago
- 65889f3 Some small Builtins.def improvements. by Eli Friedman · 15 years ago
- b93292a Targets: Allow CreateTargetInfo to mutate the target features. by Daniel Dunbar · 15 years ago
- 7abfbdb Switch more of Sema::CheckInitializerTypes over to by Douglas Gregor · 15 years ago
- 29f1a60 Correctly initialize the PrimaryBaseInfo if a base is null. Fixes PR5832. by Anders Carlsson · 15 years ago
- c3c90b2 Add and tidy doxygen comments and move implementation of toString() to newly by Ken Dyck · 15 years ago
- 5328751 Enhance GRExprEngine::VisitCallExpr() to be used in an lvalue context. Uncovered a new failing test case along the way, but we're making progress on handling C++ references in the analyzer. by Ted Kremenek · 15 years ago
- 5231eaa Use System/DataTypes.h, stdint.h isn't portable. by Daniel Dunbar · 15 years ago
- ff5ce6e Extend code-completion results with the type of each result by Douglas Gregor · 15 years ago
- eac7c53 ARM: Fix predefines (__ARM_ARCH_..., __REGISTER_PREFIX). by Daniel Dunbar · 15 years ago
- ec6762c Change clang_codeComplete API to return the results in a structure on by Douglas Gregor · 15 years ago
- 4273f70 Change the return type of ASTContext::getTypeSizeInChars() from uint64_t to the by Ken Dyck · 15 years ago
- cc906ef Rename getByteSize() and getTypeSizeInBytes() in ASTContext to getCharWidth() by Ken Dyck · 15 years ago
- 6443713 Initial implementation of CharUnits, an opaque value class for representing by Ken Dyck · 15 years ago
- 38b48af clang -cc1: Rename -mcpu to -target-cpu to match other target options and not alias driver/backend option. by Daniel Dunbar · 15 years ago
- 18ef5e2 Switch the initialization required by return statements over to the by Douglas Gregor · 15 years ago
- f2d8b9f Add -dwarf-debug-flags, which provides a way to embed the cc1 level options used by Daniel Dunbar · 15 years ago
- 9986017 reword the help text of fno_assume_sane_operator_new, following Chris suggestion by Nuno Lopes · 15 years ago
- 3cead90 Convert GRExprEngine::VisitCallExpr() to use a worklist instead of recursion to evaluate the arguments of a CallExpr. This simplifies the logic and makes it easier to read. (it also avoids any issues with blowing out the stack if the CallExpr had a ridiculous number of arguments) by Ted Kremenek · 15 years ago
- 0a8bab0 implement PR3962: diagnose more faulty cases of usage of the restrict qualifier. this also removes a FIXME by Nuno Lopes · 15 years ago
- 3d31560 Include <time.h> in order to use 'time_t'. by Chandler Carruth · 15 years ago
- 6dd30fc Diagnose duplicate declaration of a property. Fixes PR5809 by Fariborz Jahanian · 15 years ago
- c410d4d Completely remove ObjCObjectRegion (tests pass this time). by Ted Kremenek · 15 years ago
- 8663b18 Fix -fdollars-in-identifiers Clang translation. by Daniel Dunbar · 15 years ago
- 16006c9 When value-initializing a class with no user-defined constructors but by Douglas Gregor · 15 years ago
- dd69aae Diagnose property of reference type as unsupported instead of crashing for now. by Fariborz Jahanian · 15 years ago
- fc28448 implement PR5654: add -fassume-sane-operator-new, which is enabled by default, and adds the malloc attribute to the global function new() and to the overloaded new operators. by Nuno Lopes · 15 years ago
- 3b4294e Shift things around so that it's easier to recover from a missing by John McCall · 15 years ago