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
/
SemaExprCXX.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Implement C++1y sized deallocation (n3778). This is not enabled by -std=c++1y;
Richard Smith
2013-09-29
1
-55
/
+139
*
PR16529: Don't forget to add the CXXFunctionalCastExpr type sugar to an
Richard Smith
2013-09-23
1
-8
/
+11
*
Avoid getting an argument of allocation function if it does not exist.
Serge Pavlov
2013-09-14
1
-11
/
+12
*
Fix is_trivially_constructible preconditions.
Eli Friedman
2013-09-11
1
-12
/
+12
*
AST: __uuidof should leak through templated types
David Majnemer
2013-09-07
1
-7
/
+17
*
Properly track l-paren of a CXXFucntionalCastExpr.
Eli Friedman
2013-08-15
1
-2
/
+3
*
A few small cleanups to r187504. Thanks to dblaikie for the assist.
Kaelyn Uhrain
2013-07-31
1
-8
/
+7
*
Improve the diagnostic experience, including adding recovery, for
Kaelyn Uhrain
2013-07-31
1
-3
/
+34
*
ObjectiveC arc: Move check for type conversions in arc
Fariborz Jahanian
2013-07-31
1
-1
/
+2
*
Add missing check for creating an instance of an abstract class through an
Richard Smith
2013-07-20
1
-1
/
+5
*
If an unimported submodule of an imported module contains a declaration of a
Richard Smith
2013-07-14
1
-1
/
+5
*
contextual conversion fix: C++98 compatibility warning.
Larisse Voufo
2013-06-18
1
-2
/
+3
*
r184100 Fix -- Updated test cases for contextual conversion
Larisse Voufo
2013-06-18
1
-3
/
+3
*
Revert "Updated test cases for contextual conversion"
Rafael Espindola
2013-06-17
1
-3
/
+3
*
Updated test cases for contextual conversion
Larisse Voufo
2013-06-17
1
-3
/
+3
*
Updated the support for contextual conversion tweaks (n3323) with a previousl...
Larisse Voufo
2013-06-15
1
-56
/
+85
*
Allow paren casted throw statements inside of ternary expressions
David Majnemer
2013-06-02
1
-2
/
+2
*
Add support to fallback on operator new when a placement operator new[] is ca...
Aaron Ballman
2013-05-30
1
-0
/
+15
*
PR14772: Support constant expression evaluation for _Atomic types.
Richard Smith
2013-05-23
1
-6
/
+16
*
Refactor places which perform contextual implicit conversions to go through a
Richard Smith
2013-05-21
1
-75
/
+79
*
ArrayRef'ize Sema::FindAllocationFunctions
Dmitri Gribenko
2013-05-10
1
-28
/
+19
*
ArrayRef'ize Sema::FindAllocationOverload
Dmitri Gribenko
2013-05-10
1
-23
/
+16
*
Revert my r181563, breaks tests on buildbots
Dmitri Gribenko
2013-05-10
1
-16
/
+23
*
ArrayRef'ize Sema::FindAllocationOverload
Dmitri Gribenko
2013-05-09
1
-23
/
+16
*
ArrayRef'ize some SemaOverload methods
Dmitri Gribenko
2013-05-09
1
-2
/
+3
*
Replace 'MultiExprArg()' with 'None'
Dmitri Gribenko
2013-05-05
1
-2
/
+2
*
ArrayRef'ization of some methods in SemaOverload. Patch by Robert Wilhelm!
Richard Smith
2013-05-05
1
-1
/
+1
*
Don't build a call expression referring to a function which we're not allowed
Richard Smith
2013-05-04
1
-7
/
+14
*
ArrayRef'ize InitializationSequence constructor and InitializationSequence::D...
Dmitri Gribenko
2013-05-03
1
-34
/
+28
*
Move parsing of identifiers in MS-style inline assembly into
John McCall
2013-05-03
1
-1
/
+1
*
When deducing an 'auto' type, don't modify the type-as-written.
Richard Smith
2013-04-30
1
-5
/
+3
*
Don't treat a non-deduced 'auto' type as being type-dependent. Instead, there
Richard Smith
2013-04-30
1
-3
/
+4
*
Small CapturedStmt improvements
Ben Langmuir
2013-04-29
1
-22
/
+17
*
Implement C++1y decltype(auto).
Richard Smith
2013-04-26
1
-1
/
+1
*
C++1y constexpr extensions, round 1: Allow most forms of declaration and
Richard Smith
2013-04-22
1
-1
/
+1
*
Sema for Captured Statements
Tareq A. Siraj
2013-04-16
1
-0
/
+13
*
Basic support for Microsoft property declarations and
John McCall
2013-04-16
1
-0
/
+5
*
Add 178663 back.
Rafael Espindola
2013-04-03
1
-3
/
+2
*
Revert 178663.
Rafael Espindola
2013-04-03
1
-2
/
+3
*
Don't compute a patched/semantic storage class.
Rafael Espindola
2013-04-03
1
-3
/
+2
*
Implement compiler intrinsics needed for compatibility with MSVC 2012 <type_t...
Joao Matos
2013-03-27
1
-31
/
+76
*
Implement special-case name lookup for inheriting constructors: member
Richard Smith
2013-03-26
1
-0
/
+37
*
PR7256: Provide a fixit for incorrect destructor declarations
David Blaikie
2013-03-20
1
-2
/
+10
*
ArrayRef-ize ASTContext::getFunctionType and Sema::BuildFunctionType.
Jordan Rose
2013-03-08
1
-3
/
+2
*
Improve LLDB's implicit cast-to-id to work with C++11 auto and any Objective-...
Douglas Gregor
2013-03-07
1
-3
/
+2
*
The meat of this patch is in BuildCXXMemberCalLExpr where we make it use
Nick Lewycky
2013-02-12
1
-3
/
+7
*
Enable overloading of OpenCL events - this is needed for the overloaded OpenC...
Guy Benyei
2013-02-07
1
-0
/
+6
*
Patch to check for integer overflow. It has been
Fariborz Jahanian
2013-01-24
1
-2
/
+3
*
Add -Wunsequenced (with compatibility alias -Wsequence-point) to warn on
Richard Smith
2013-01-17
1
-1
/
+2
*
Refactor to call ActOnFinishFullExpr on every full expression. Teach
Richard Smith
2013-01-14
1
-9
/
+12
[next]