index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Sema
/
SemaChecking.cpp
Age
Commit message (
Expand
)
Author
2008-03-15
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner
2008-03-03
Added TODO.
Ted Kremenek
2008-02-13
Use IgnoreParenCasts.
Anders Carlsson
2008-02-13
Move IgnoreParenCasts to be a method on Expr.
Chris Lattner
2008-02-11
Get rid of bogus warnings when the second argument in va_start is either an i...
Anders Carlsson
2008-01-17
Fixed typo introduced by r46133 that caused -Wfloat-equal to break.
Ted Kremenek
2008-01-17
Added method Expr::IgnoreParens(), which returns the first non-ParenExpr Expr*.
Ted Kremenek
2008-01-07
Substituted all instances of the string "Objc" for "ObjC". This fixes
Ted Kremenek
2007-12-29
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-12-28
various cleanups. Use IgnoreParenCasts instead of inlined versions.
Chris Lattner
2007-12-28
unindent cases in a switch stmt, no functionality change.
Chris Lattner
2007-12-28
Change Sema::ActOnCallExpr to construct the CallExpr early and put it into
Chris Lattner
2007-12-20
More objective-c typechecking stuff. This is work in progress and more patches
Fariborz Jahanian
2007-12-20
implement semantic analysis for __builtin_islessequal and friends.
Chris Lattner
2007-12-20
simplify some code.
Chris Lattner
2007-12-19
refactor some code that handles sema of direct function calls.
Chris Lattner
2007-12-18
Fixe bogus error for variable argument methods. Sema::ObjcGetTypeForMethodDef...
Steve Naroff
2007-12-17
Modified format-string checking to not emit a warning when all of the
Ted Kremenek
2007-12-17
Format string checker: asprintf does not pass argumnents via va_list.
Ted Kremenek
2007-12-04
Simplified setting up Method's scope before generating AST for its nody.
Fariborz Jahanian
2007-11-30
GCC has an extension where the left hand side of the ? : operator can be omit...
Anders Carlsson
2007-11-29
Enhanced implementation of -Wfloat-equal to check for comparisons against
Ted Kremenek
2007-11-25
Moved logic for -Wfloat-equal to SemaChecking.cpp.
Ted Kremenek
2007-10-12
Added notion of '*' specified format width/specifiers when checking
Ted Kremenek
2007-10-12
Add some more diagnostics for va_start, fix tests so they pass with these new...
Anders Carlsson
2007-10-12
Printf argument checking now supports dynamically-passed precision
Ted Kremenek
2007-08-30
Fix 80 col violations.
Chris Lattner
2007-08-28
Fixed return-of-stack-address checker to correctly handle stack/global
Ted Kremenek
2007-08-27
Updated checker for "return of address of stack variable" to look for
Ted Kremenek
2007-08-26
Fix %p format checking, patch by Keith Bauer.
Chris Lattner
2007-08-26
For warnings like this:
Chris Lattner
2007-08-25
Fix the test/Sema/format-strings.c regression. This code should be refactored.
Chris Lattner
2007-08-25
Fix the regression on test/Sema/cfstring.c
Chris Lattner
2007-08-20
Modified ArraySubscriptExpr to have accessors getLHS and getRHS in addition
Ted Kremenek
2007-08-17
Added extra semantic checking to do basic detection of
Ted Kremenek
2007-08-17
Return true in case of error, which is what other functions do.
Anders Carlsson
2007-08-17
Add initial support for constant CFStrings.
Anders Carlsson
2007-08-14
Added support for additional format string checking for the printf
Ted Kremenek
2007-08-10
Added "id_idx" parameter to CheckPrintfArguments. This will be used
Ted Kremenek
2007-08-10
initial support for checking format strings, patch by Ted Kremenek:
Chris Lattner