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
/
SemaExpr.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Add some code to accurately perform odr-used marking for variables per the C+...
Eli Friedman
2012-02-02
1
-24
/
+98
*
Pacify gcc's -Wreturn-type
Matt Beaumont-Gay
2012-02-02
1
-0
/
+1
*
Split Sema::MarkDeclarationReferenced into multiple functions; the additional...
Eli Friedman
2012-02-02
1
-141
/
+181
*
Improve checking of explicit captures in a C++11 lambda expression:
Douglas Gregor
2012-02-01
1
-2
/
+3
*
Make the callback object to Sema::CorrectTypo mandatory.
Kaelyn Uhrain
2012-01-31
1
-1
/
+1
*
Added source location for the template keyword in AST template-id expressions.
Abramo Bagnara
2012-01-27
1
-17
/
+25
*
Refactor to share code for handling return statements between lambda expressi...
Eli Friedman
2012-01-26
1
-0
/
+3
*
Avoid correcting unknown identifiers to types where types aren't allowed.
Kaelyn Uhrain
2012-01-25
1
-2
/
+3
*
objc: Issue a generic diagnostic assigning to
Fariborz Jahanian
2012-01-24
1
-6
/
+1
*
objc: issue error if assigning objects in fragile-abi too.
Fariborz Jahanian
2012-01-24
1
-4
/
+8
*
Rename Sema::isNullExpr() -> Sema::isSentinelNullExpr() which is more descrip...
Argyrios Kyrtzidis
2012-01-24
1
-2
/
+2
*
Introduce Sema::isNullExpr() that contains the checks that
Argyrios Kyrtzidis
2012-01-23
1
-11
/
+19
*
Fix some comments relating to ExpressionEvaluationContexts. Get rid of a cou...
Eli Friedman
2012-01-21
1
-11
/
+8
*
Add obvious missing call to MarkDeclarationReferenced.
Eli Friedman
2012-01-21
1
-0
/
+1
*
Make clang's AST model sizeof and typeof with potentially-evaluated operands ...
Eli Friedman
2012-01-21
1
-0
/
+12
*
Localize variable, remove unused assignment.
Benjamin Kramer
2012-01-20
1
-5
/
+1
*
Remove PotentiallyPotentiallyEvaluated, and replace it with a much simpler an...
Eli Friedman
2012-01-20
1
-86
/
+43
*
A few style changes.
Tanya Lattner
2012-01-19
1
-6
/
+3
*
Fix char literal types in C
Seth Cantrell
2012-01-18
1
-8
/
+6
*
Convert DiagnoseEmptyLookup to use correction callbacks.
Kaelyn Uhrain
2012-01-18
1
-3
/
+4
*
Fix a couple issues where we didn't correctly delay diagnostics in Potentiall...
Eli Friedman
2012-01-18
1
-4
/
+58
*
Correctly resolve an overload set passed to an overloaded operator=. PR11784.
Eli Friedman
2012-01-17
1
-0
/
+3
*
Remove unreachable code in Clang. (replace with llvm_unreachable where approp...
David Blaikie
2012-01-17
1
-16
/
+8
*
Remove unnecessary default cases in switches over enums.
David Blaikie
2012-01-17
1
-1
/
+0
*
Revert r148271; this requires more thought.
Eli Friedman
2012-01-17
1
-28
/
+11
*
Change the behavior of the lvalue-to-rvalue conversion for varargs in Potenti...
Eli Friedman
2012-01-17
1
-11
/
+28
*
Add support for OpenCL 1.1 logical operations.
Tanya Lattner
2012-01-16
1
-16
/
+44
*
Some improvements to the handling of C11 atomic types:
David Chisnall
2012-01-16
1
-4
/
+45
*
Refactor variables unused under non-assert builds.
David Blaikie
2012-01-16
1
-2
/
+1
*
Pedantic diagnostic correction: in C++, we have integral constant expressions,
Richard Smith
2012-01-15
1
-9
/
+8
*
Use a smaller vector than SmallVector.
Benjamin Kramer
2012-01-14
1
-3
/
+2
*
Progress towards making isUsed() reflect whether a declaration is odr-used; d...
Eli Friedman
2012-01-13
1
-10
/
+0
*
objc: do not warn when converting to a const id qualfied by its
Fariborz Jahanian
2012-01-12
1
-1
/
+3
*
Start refactoring code for capturing variables and 'this' so that it is share...
Eli Friedman
2012-01-11
1
-13
/
+17
*
More lambda work: semantic analysis of capturing 'this'. It's a bit complica...
Eli Friedman
2012-01-07
1
-0
/
+1
*
Minor refactoring of sentinel warning on blocks. Add a test for this warning.
Eli Friedman
2012-01-06
1
-6
/
+0
*
More lambda work. Tweak the Sema interface slightly. Start adding the pieces...
Eli Friedman
2012-01-05
1
-2
/
+2
*
Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" ...
Benjamin Kramer
2011-12-23
1
-5
/
+5
*
C++11 half of r147023: In C++11, additionally eagerly instantiate:
Richard Smith
2011-12-21
1
-3
/
+8
*
C++ constant expression handling: eagerly instantiate static const integral data
Richard Smith
2011-12-21
1
-1
/
+6
*
objc/c++: Issue diagnostic when free-standing ivar is accessed
Fariborz Jahanian
2011-12-20
1
-0
/
+6
*
Unlike in C++03, a constant-expression is not an unevaluated operand in C++11.
Richard Smith
2011-12-20
1
-2
/
+17
*
Silence gcc warnings.
Benjamin Kramer
2011-12-18
1
-1
/
+2
*
PR11594: Don't blindly build a UnaryOperator UO_Minus on an expression which
Richard Smith
2011-12-16
1
-4
/
+2
*
Replace all comparisons between ObjCInterfaceDecl pointers with calls
Douglas Gregor
2011-12-15
1
-2
/
+2
*
Produce more detailed diagnostics when static_assert condition is not an ICE.
Richard Smith
2011-12-14
1
-18
/
+33
*
Don't consider an overloaded operator& when the expression is actually
Douglas Gregor
2011-12-14
1
-1
/
+44
*
Prepare constant expression infrastructure for the generation of richer
Richard Smith
2011-12-12
1
-11
/
+17
*
C++11 constant expressions: Don't use CheckICE in C++11; instead, determine
Richard Smith
2011-12-09
1
-1
/
+1
*
objc: issue deprecated/unavailable diagnostic when
Fariborz Jahanian
2011-12-07
1
-8
/
+9
[prev]
[next]