index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
Sema
/
SemaChecking.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
PR16467: Teach -Wunsequenced that in C11 (unlike C++11), an assignment's
Richard Smith
2013-06-26
1
-5
/
+15
*
[Sema] Call CheckParmForFunctionDef on ObjC method parameters
Reid Kleckner
2013-06-24
1
-1
/
+2
*
Extend -Wnon-pod-varargs to more cases, such as function pointers as return
Richard Trieu
2013-06-22
1
-15
/
+37
*
Provide suggested no-arg calls for overloaded member functions missing calls
David Blaikie
2013-06-21
1
-1
/
+1
*
[ms-cxxabi] Destroy temporary record arguments in the callee
Reid Kleckner
2013-06-21
1
-0
/
+9
*
Add back a condition accidentially removed in r184470.
Richard Trieu
2013-06-20
1
-1
/
+1
*
Avoid repeatedly evaluating subexpressions when checking for unsequenced
Richard Smith
2013-06-20
1
-7
/
+37
*
Extend -Wnon-pod-varargs to check calls made from function pointers.
Richard Trieu
2013-06-20
1
-5
/
+11
*
Correctly compute the index of the first string format argument when deciding
Eli Friedman
2013-06-18
1
-1
/
+1
*
Revert "Properly consider the range of enum for range comparisons in C mode"
David Majnemer
2013-06-07
1
-14
/
+11
*
Properly consider the range of enum for range comparisons in C mode
David Majnemer
2013-06-02
1
-11
/
+14
*
Patch to issue error when target of MacOS and iOS
Fariborz Jahanian
2013-05-28
1
-3
/
+11
*
Warn on va_start() when called with a reference parameter.
Nico Weber
2013-05-24
1
-0
/
+14
*
Objective-C: More cases of -Wsign-conversion not
Fariborz Jahanian
2013-05-15
1
-3
/
+5
*
Objective-C: patch to issue the conversion
Fariborz Jahanian
2013-05-15
1
-1
/
+7
*
Grab-bag of bit-field fixes:
John McCall
2013-05-06
1
-2
/
+2
*
ArrayRef'ize Sema::CheckObjCMethodCall
Dmitri Gribenko
2013-05-05
1
-3
/
+2
*
Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constr...
Dmitri Gribenko
2013-05-05
1
-2
/
+2
*
c language: diagnose use of "[*]" on any array dimension
Fariborz Jahanian
2013-04-29
1
-1
/
+3
*
Handle "typeof" in Objective-C format string checking. This previously crashed.
Ted Kremenek
2013-04-10
1
-0
/
+4
*
Revert r178273 as it broke the Linux bootstrap due to false positives
Timur Iskhodzhanov
2013-03-29
1
-119
/
+16
*
Implemented a warning when an input several bitwise operations are
Sam Panzer
2013-03-28
1
-16
/
+119
*
For printf checking, handle nested typedefs for darwin-specific checking.
Ted Kremenek
2013-03-25
1
-1
/
+5
*
Simplify print logic, per feedback from Jordan Rose.
Ted Kremenek
2013-03-15
1
-1
/
+1
*
Enhance -Wtautological-constant-out-of-range-compare to include the name of t...
Ted Kremenek
2013-03-15
1
-2
/
+15
*
c: perform integer overflow check on all binary
Fariborz Jahanian
2013-03-15
1
-12
/
+1
*
c: Also chek for integer overflow for '%' operator.
Fariborz Jahanian
2013-03-15
1
-2
/
+10
*
c: add the missing binary operatory when checking
Fariborz Jahanian
2013-03-15
1
-1
/
+1
*
Add TagDecl::hasNameForLinkage(), which is true if the tag
John McCall
2013-03-09
1
-4
/
+2
*
Fix typos: [Dd]iagnosic -> [Dd]iagnostic
Stefanus Du Toit
2013-03-01
1
-1
/
+1
*
Include llvm::Optional in clang/Basic/LLVM.h
David Blaikie
2013-02-20
1
-3
/
+3
*
Replace TypeLoc llvm::cast support to be well-defined.
David Blaikie
2013-02-18
1
-5
/
+4
*
Don't warn on conversion from NULL to nullptr_t
David Blaikie
2013-02-16
1
-1
/
+1
*
Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h.
Jordan Rose
2013-02-08
1
-1
/
+2
*
Use a dyn_cast to avoid a crash when the TypeLoc is not a ConstantArrayTypeLoc.
Chad Rosier
2013-02-06
1
-4
/
+5
*
Move UTF conversion routines from clang/lib/Basic to llvm/lib/Support
Dmitri Gribenko
2013-01-30
1
-1
/
+1
*
c: When checking on validity of sizeof passed as size of
Fariborz Jahanian
2013-01-30
1
-1
/
+2
*
Patch to check for integer overflow. It has been
Fariborz Jahanian
2013-01-24
1
-1
/
+16
*
Make __attribute__((nonnull)) use the general expression evaluator to search for
Nick Lewycky
2013-01-23
1
-2
/
+14
*
Defer checking for unsequenced operations on the RHS of && and || in order to
Richard Smith
2013-01-17
1
-7
/
+17
*
-Wunsequenced: if the LHS of an &&, || or ?: is not constant, check for
Richard Smith
2013-01-17
1
-6
/
+22
*
Attempt to work around bug in older GCCs to fix buildbot.
Richard Smith
2013-01-17
1
-3
/
+3
*
Add -Wunsequenced (with compatibility alias -Wsequence-point) to warn on
Richard Smith
2013-01-17
1
-0
/
+418
*
ArrayRef'ize Sema APIs related to format string checking
Dmitri Gribenko
2013-01-13
1
-41
/
+44
*
s/CPlusPlus0x/CPlusPlus11/g
Richard Smith
2013-01-02
1
-1
/
+1
*
Tweak Sema::CheckLiteralKind() to also include block literals
Ted Kremenek
2012-12-21
1
-11
/
+6
*
Change checkUnsafeAssignLiteral() to use the new Sema::CheckLiteralKind().
Ted Kremenek
2012-12-21
1
-24
/
+15
*
Use descriptive enum instead of raw integers for checkUnsafeAssignLiteral().
Ted Kremenek
2012-12-21
1
-7
/
+9
*
Sink call to checkUnsafeAssignLiteral() into checkUnsafeAssignObject().
Ted Kremenek
2012-12-21
1
-23
/
+22
*
Remove duplicate includes.
Roman Divacky
2012-12-21
1
-2
/
+0
[prev]
[next]