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
*
Re-fix r136172 so it isn't an error; apparently, some people are fond of thei...
Eli Friedman
2011-07-26
1
-16
/
+13
*
Diagnose trying to delete a pointer to an abstract class with a non-virtual d...
Eli Friedman
2011-07-26
1
-1
/
+13
*
A couple minor issues with Sema for delete:
Eli Friedman
2011-07-26
1
-22
/
+28
*
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....
Chris Lattner
2011-07-23
1
-10
/
+10
*
Enforce access control for the destructor in a new[] expression and mark
John McCall
2011-07-13
1
-1
/
+11
*
objc++-arc: more diagnosis of converting a weak-unavailable
Fariborz Jahanian
2011-07-08
1
-2
/
+14
*
In ARC, reclaim all return values of retainable type, not just those
John McCall
2011-07-07
1
-7
/
+6
*
Properly implement the scope restriction on the NRVO for
Douglas Gregor
2011-07-06
1
-10
/
+64
*
Perform lvalue-to-rvalue conversions on both operands of ->*
John McCall
2011-06-30
1
-0
/
+14
*
Introduce Declarator::CXXNewContext and remove 'AutoAllowedInTypeName' parameter
Argyrios Kyrtzidis
2011-06-28
1
-2
/
+1
*
Centralize all checks for a C++ tag definition inside a typename in
Argyrios Kyrtzidis
2011-06-28
1
-1
/
+1
*
Fix PR10204 in a better way.
John McCall
2011-06-27
1
-1
/
+10
*
Rename objc_lifetime -> objc_ownership, and modify diagnostics to talk about ...
Argyrios Kyrtzidis
2011-06-24
1
-1
/
+1
*
Fix Sema::CheckVectorOperands so that it doesn't try to insert a cast express...
Eli Friedman
2011-06-23
1
-1
/
+1
*
Automatic Reference Counting.
John McCall
2011-06-15
1
-70
/
+238
*
Implement support for C++11 in-class initialization of non-static data members.
Richard Smith
2011-06-11
1
-30
/
+43
*
Fix order of operands for the warning about incompatible Objective-C
Douglas Gregor
2011-06-11
1
-1
/
+1
*
Implement Objective-C Related Result Type semantics.
Douglas Gregor
2011-06-11
1
-0
/
+4
*
Fix a bunch more notes that were emitted even when the diagnostic they
Chandler Carruth
2011-06-08
1
-6
/
+9
*
Remove all references to InitializationSequence::FailedSequence from outside ...
Sebastian Redl
2011-06-05
1
-3
/
+3
*
Add new warning that warns when invoking 'delete' on a polymorphic, non-final...
Argyrios Kyrtzidis
2011-05-24
1
-0
/
+14
*
The array-size operand to a new-expression is not necessarily a size_t.
John McCall
2011-05-15
1
-2
/
+2
*
Implement the __is_trivially_copyable type trait
Alexis Hunt
2011-05-13
1
-0
/
+3
*
Implement defaulting of destructors.
Alexis Hunt
2011-05-12
1
-23
/
+39
*
Hrm
Alexis Hunt
2011-05-12
1
-18
/
+21
*
Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and
Alexis Hunt
2011-05-09
1
-4
/
+4
*
Look at all the record redeclaration when looking for a uuid attribute.
Francois Pichet
2011-05-08
1
-4
/
+5
*
Add support for Microsoft __if_exists and __if_not_exists construct inside fu...
Francois Pichet
2011-05-06
1
-0
/
+15
*
Remove a stale comment, it no longer applied after my cleanups.
Chandler Carruth
2011-05-01
1
-8
/
+5
*
Move several more type traits' implementations into the AST. A few were
Chandler Carruth
2011-05-01
1
-12
/
+6
*
Switch __is_scalar to use the isScalarType predicate rather than
Chandler Carruth
2011-05-01
1
-6
/
+1
*
Have the array type traits build an expression with type 'size_t'
Chandler Carruth
2011-05-01
1
-1
/
+8
*
Remove an inapplicable and completely out of place comment. The type is in fa...
Chandler Carruth
2011-05-01
1
-1
/
+1
*
Remove more dead code for emitting diagnostics. The callers of these
Chandler Carruth
2011-05-01
1
-17
/
+8
*
Simplify the flow of some of the array type trait code.
Chandler Carruth
2011-05-01
1
-13
/
+4
*
Convert the expression trait evaluation to a static function and
Chandler Carruth
2011-05-01
1
-20
/
+19
*
Remove the default case from the unary type trait evaluation function,
Chandler Carruth
2011-05-01
1
-2
/
+1
*
Mark that this function ends in a covering switch statement with every
Chandler Carruth
2011-05-01
1
-0
/
+2
*
Remove the type traits UTT_IsLvalueExpr and UTT_IsRvalueExpr.
Chandler Carruth
2011-05-01
1
-5
/
+0
*
More cleanup of the type traits implementation.
Chandler Carruth
2011-05-01
1
-81
/
+110
*
Order the type traits according to the standard's listing of unary type
Chandler Carruth
2011-05-01
1
-54
/
+79
*
Begin cleaning up type trait expression implementations and settling on
Chandler Carruth
2011-05-01
1
-21
/
+21
*
Extract a function to impose the completeness requirement on unary type
Chandler Carruth
2011-04-30
1
-23
/
+76
*
Hoist all of the type-specific trait logic for __is_standard_layout into
Chandler Carruth
2011-04-30
1
-16
/
+1
*
Completely re-implement the core logic behind the __is_standard_layout
Chandler Carruth
2011-04-30
1
-1
/
+1
*
A few corrections to type traits that missed the last checkin
John Wiegley
2011-04-28
1
-19
/
+46
*
Implementation of Embarcadero array type traits
John Wiegley
2011-04-28
1
-0
/
+88
*
t/clang/type-traits
John Wiegley
2011-04-27
1
-4
/
+77
*
Make yet another placeholder type, this one marking that an expression is a b...
John McCall
2011-04-26
1
-10
/
+5
*
t/clang/expr-traits
John Wiegley
2011-04-25
1
-0
/
+39
[next]