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
/
SemaDeclCXX.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Mechanically rename SourceManager::getInstantiationLoc and
Chandler Carruth
2011-07-25
1
-1
/
+1
*
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....
Chris Lattner
2011-07-23
1
-15
/
+15
*
Speculatively revert 135649 to bring back the g++ testing bots.
Eric Christopher
2011-07-21
1
-6
/
+4
*
When copping out on a friend template declaration, be sure to mark its
Alexis Hunt
2011-07-21
1
-4
/
+6
*
Replace r134583's fix for PR10290 with one which also works for non-value-dep...
Richard Smith
2011-07-20
1
-2
/
+3
*
Eliminate an incomplete/incorrect attempt to provide support for C++0x
Douglas Gregor
2011-07-13
1
-5
/
+2
*
Fix a bug where a local variable named 'self' is causing
Fariborz Jahanian
2011-07-12
1
-0
/
+1
*
Fixed PR10243.
Abramo Bagnara
2011-07-11
1
-6
/
+16
*
Don't try to type-check a copy construction of an exception
Douglas Gregor
2011-07-06
1
-1
/
+1
*
ActOnCXXConditionDeclaration should take into account that
Douglas Gregor
2011-07-05
1
-1
/
+4
*
Add support for C++ namespace-aware typo correction, e.g., correcting
Douglas Gregor
2011-06-28
1
-56
/
+55
*
Remove the call to GetTypeForDeclarator in Sema::ActOnCXXConditionDeclaration.
Argyrios Kyrtzidis
2011-06-28
1
-16
/
+4
*
Fix a couple more issues related to r133854:
Richard Smith
2011-06-25
1
-8
/
+1
*
Support for catching objc pointer objects in c++ catch-statement
Fariborz Jahanian
2011-06-23
1
-8
/
+2
*
Alloa catching Objective-C id's being thrown with C++ throw
Fariborz Jahanian
2011-06-22
1
-2
/
+6
*
Changes ParenListExpr to always require a type.
Manuel Klimek
2011-06-22
1
-24
/
+11
*
Ensure that we delete implict copy members when explicit move members
Alexis Hunt
2011-06-22
1
-2
/
+14
*
Attempt to reapply this patch for caching copy assignment operator
Alexis Hunt
2011-06-21
1
-187
/
+82
*
De-Unicode-ify in comments.
NAKAMURA Takumi
2011-06-21
1
-3
/
+3
*
When synthesizing implicit copy/move constructors and copy/move assignment
John McCall
2011-06-17
1
-5
/
+14
*
Automatic Reference Counting.
John McCall
2011-06-15
1
-23
/
+22
*
Implement support for C++11 in-class initialization of non-static data members.
Richard Smith
2011-06-11
1
-28
/
+201
*
This change is breaking selfhost. Revert it until I have more time
Alexis Hunt
2011-06-10
1
-82
/
+187
*
Implement caching of copy assignment operator lookup.
Alexis Hunt
2011-06-10
1
-187
/
+82
*
Implement caching for copy constructors in similar situations.
Alexis Hunt
2011-06-10
1
-89
/
+41
*
Implement caching of default constructors on the resolution table. This
Alexis Hunt
2011-06-10
1
-63
/
+41
*
Remove all references to InitializationSequence::FailedSequence from outside ...
Sebastian Redl
2011-06-05
1
-6
/
+6
*
Implement a new warning for when adding a default argument to a method
Alexis Hunt
2011-05-26
1
-0
/
+9
*
Update our diagnostics to properly account for move operations.
Alexis Hunt
2011-05-25
1
-8
/
+18
*
Implement a little bit of cleanup and a lot more of the base work
Alexis Hunt
2011-05-25
1
-9
/
+6
*
Implement explicit specialization of explicitly-defaulted constructors.
Alexis Hunt
2011-05-23
1
-6
/
+15
*
Correctly propagate defaultedness across template instantiation. This
Alexis Hunt
2011-05-23
1
-1
/
+8
*
Emulate a MSVC bug where if during an using declaration name lookup, the decl...
Francois Pichet
2011-05-23
1
-0
/
+1
*
Add a missing case for default constructor deletion.
Alexis Hunt
2011-05-20
1
-0
/
+5
*
Downgrade the error about re-opening an inline namespace as non-inline
Douglas Gregor
2011-05-20
1
-3
/
+11
*
Reapply r121528, fixing PR9941 by delaying the exception specification check ...
Sebastian Redl
2011-05-19
1
-6
/
+35
*
After consultation with doug, revert r131515.
Alexis Hunt
2011-05-18
1
-9
/
+1
*
Revert r121528 as it breaks a simple testcase, which leads to, among
Alexis Hunt
2011-05-18
1
-35
/
+6
*
Implement implicit exception specifications of destructors.
Sebastian Redl
2011-05-18
1
-6
/
+35
*
Implement an additional fix for infinite recursion of deleted special
Alexis Hunt
2011-05-18
1
-58
/
+49
*
Force declaration of implicit members in C++0x mode.
Alexis Hunt
2011-05-18
1
-1
/
+9
*
Fix some minor bugs and add a lot more test cases for defaulted
Alexis Hunt
2011-05-17
1
-8
/
+12
*
Implement some tests for defaulted constructors. To do this I had to
Alexis Hunt
2011-05-17
1
-17
/
+19
*
What I hope to be an implementation of defaulted copy assignment
Alexis Hunt
2011-05-14
1
-59
/
+174
*
More progress towards defaulted copy assignment
Alexis Hunt
2011-05-14
1
-1
/
+192
*
Start implementing defaulted copy assignment
Alexis Hunt
2011-05-14
1
-16
/
+24
*
Fix copy constructor deletion detection with array types.
Alexis Hunt
2011-05-13
1
-3
/
+10
*
Defaulting copy constructors now works reasonably well.
Alexis Hunt
2011-05-13
1
-36
/
+326
*
Implement defaulting of destructors.
Alexis Hunt
2011-05-12
1
-3
/
+1
*
Hrm
Alexis Hunt
2011-05-12
1
-28
/
+199
[next]