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
/
AST
/
DeclCXX.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
constexpr: don't consider class types with mutable members to be literal types.
Richard Smith
2011-10-12
1
-1
/
+5
*
Constant expression evaluation refactoring:
Richard Smith
2011-10-10
1
-8
/
+4
*
Per C++ [class.bit]p2, unnamed bit-fields are not members. Fixes PR10289.
Douglas Gregor
2011-10-10
1
-0
/
+7
*
Removing a bunch of dead returns/breaks after llvm_unreachables.
David Blaikie
2011-09-23
1
-1
/
+0
*
Switch assert(0/false) llvm_unreachable.
David Blaikie
2011-09-23
1
-3
/
+3
*
Fix a broken assert in AST/DeclCXX.cpp.
Richard Trieu
2011-09-10
1
-1
/
+1
*
Implement the suggested resolution of WG21 N3307 issue 19: When determining w...
Richard Smith
2011-09-05
1
-11
/
+7
*
Declare and define implicit move constructor and assignment operator.
Sebastian Redl
2011-08-30
1
-2
/
+3
*
Track in the AST whether a function is constexpr.
Richard Smith
2011-08-15
1
-12
/
+13
*
Renamings to consistently use 'Constexpr' not 'ConstExpr' when referring to t...
Richard Smith
2011-08-10
1
-5
/
+4
*
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....
Chris Lattner
2011-07-23
1
-4
/
+4
*
Correctly set up the list of virtual base classes for a CXXRecordDecl. Previo...
Richard Smith
2011-07-12
1
-16
/
+2
*
Automatic Reference Counting.
John McCall
2011-06-15
1
-1
/
+35
*
Implement support for C++11 in-class initialization of non-static data members.
Richard Smith
2011-06-11
1
-0
/
+26
*
Implement a little bit of cleanup and a lot more of the base work
Alexis Hunt
2011-05-25
1
-71
/
+91
*
Implement the new C++0x rules for non-trivial things in unions so that
Alexis Hunt
2011-05-16
1
-14
/
+11
*
When determining whether we can make a declaration into a global
Douglas Gregor
2011-05-13
1
-1
/
+13
*
Implement implicit deletion of default constructors.
Alexis Hunt
2011-05-11
1
-5
/
+2
*
Clean up trivial default constructors now.
Alexis Hunt
2011-05-09
1
-18
/
+39
*
Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and
Alexis Hunt
2011-05-09
1
-29
/
+37
*
Revert r130912 in order to approach defaulted functions from the other
Alexis Hunt
2011-05-06
1
-5
/
+3
*
Implement some framework for defaulted constructors.
Alexis Hunt
2011-05-05
1
-3
/
+5
*
Rename the last '[hH]asStandardLayout' entites to '[iI]sStandardLayout'
Chandler Carruth
2011-04-30
1
-14
/
+14
*
Completely re-implement the core logic behind the __is_standard_layout
Chandler Carruth
2011-04-30
1
-10
/
+101
*
Initialize HasStandardLayout.
Benjamin Kramer
2011-04-30
1
-1
/
+1
*
More cleanup of template argument deduction and its handling of
Douglas Gregor
2011-04-28
1
-2
/
+2
*
t/clang/type-traits
John Wiegley
2011-04-27
1
-0
/
+4
*
Implement most of the remaining logic in __is_literal type trait. This
Chandler Carruth
2011-04-24
1
-2
/
+18
*
Begin tracking trivialness of move constructors and move assignment
Chandler Carruth
2011-04-23
1
-52
/
+127
*
Implement basic __is_trivial type-trait support, enough to close PR9472.
Chandler Carruth
2011-04-23
1
-0
/
+17
*
Eliminate an uninteresting assertion; invalid code involving
Douglas Gregor
2011-04-20
1
-2
/
+0
*
Fixed InnerLocStart.
Abramo Bagnara
2011-03-09
1
-10
/
+9
*
Teach libclang's token-annotation logic about context-sensitive
Douglas Gregor
2011-03-08
1
-5
/
+8
*
Fixed source range for StaticAssertDecl and LinkageSpecDecl. Fixed source ran...
Abramo Bagnara
2011-03-08
1
-5
/
+9
*
Fixed source range for all DeclaratorDecl's.
Abramo Bagnara
2011-03-08
1
-8
/
+12
*
Removed left brace location from LinkageSpecDecl.
Abramo Bagnara
2011-03-03
1
-2
/
+1
*
Fixed end source location for LinkageSpecDecl.
Abramo Bagnara
2011-03-03
1
-2
/
+4
*
Implement delegating constructors partially.
Alexis Hunt
2011-02-26
1
-1
/
+11
*
Push nested-name-specifier source location information into namespace
Douglas Gregor
2011-02-25
1
-4
/
+3
*
Push nested-name-specifier source location information into using directives.
Douglas Gregor
2011-02-25
1
-4
/
+3
*
Update UsingDecl, UnresolvedUsingTypenameDecl, and
Douglas Gregor
2011-02-25
1
-11
/
+7
*
Revert all of my commits that devirtualized the Decl hierarchy, which
Douglas Gregor
2011-02-19
1
-8
/
+7
*
Devirtualize TagDecl::completeDefinition().
Douglas Gregor
2011-02-17
1
-7
/
+8
*
Basic implementation of inherited constructors. Only generates declarations, ...
Sebastian Redl
2011-02-05
1
-0
/
+16
*
Use attributes for all the override control specifiers.
Anders Carlsson
2011-01-24
1
-3
/
+2
*
Add final/explicit getters and setters to CXXRecordDecl.
Anders Carlsson
2011-01-22
1
-0
/
+1
*
Implement the preference for move-construction over copy-construction
Douglas Gregor
2011-01-21
1
-10
/
+25
*
Change QualType::getTypePtr() to return a const pointer, then change a
John McCall
2011-01-19
1
-7
/
+0
*
PR3558: mark "logically const" accessor methods in ASTContext as const,
Jay Foad
2011-01-12
1
-6
/
+6
*
Rename CXXCtorInitializer::BaseOrMember to Initializee, since it will also be
Alexis Hunt
2011-01-08
1
-9
/
+9
[next]