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
*
DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated varia...
John McCall
2009-12-07
1
-28
/
+28
*
Fix a slight oversight in computing whether a copy constructor is elidable.
Eli Friedman
2009-12-06
1
-2
/
+4
*
Fix for PR5693: shift some code into SetClassDeclAttributesFromBase so that
Eli Friedman
2009-12-05
1
-5
/
+15
*
Fix "using typename" and the instantiation of non-dependent using declarations.
John McCall
2009-12-04
1
-30
/
+53
*
Unify the end-of-class code paths used by the parser and template
Douglas Gregor
2009-12-03
1
-14
/
+25
*
When instantiating a class, if a base specifier is not dependent we still nee...
Anders Carlsson
2009-12-03
1
-11
/
+18
*
Honor using declarations in overload resolution. Most of the code for
John McCall
2009-12-03
1
-5
/
+10
*
Improve source location information for C++ member initializers in a
Douglas Gregor
2009-12-02
1
-35
/
+64
*
In Sema, whenever we think that a function is going to cause a vtable to be g...
Anders Carlsson
2009-12-02
1
-4
/
+33
*
Make sure to call AddOverriddenMethods for implicit copy assignment operators;
Eli Friedman
2009-12-02
1
-0
/
+1
*
Fix a code gen. crash synthesizing a destructor.
Fariborz Jahanian
2009-12-01
1
-2
/
+3
*
Move the checking of overridden virtual functions into the code path
Douglas Gregor
2009-12-01
1
-0
/
+20
*
Don't automatically assume that an id-expression refers to a
Douglas Gregor
2009-12-01
1
-5
/
+5
*
When we're trying to define an implicit virtual destructor, make sure that we...
Anders Carlsson
2009-11-30
1
-7
/
+22
*
Remove remaining VISIBILITY_HIDDEN from anonymous namespaces.
Benjamin Kramer
2009-11-28
1
-5
/
+3
*
Add Parser support for C++0x literal operators ('operator "" i').
Alexis Hunt
2009-11-28
1
-0
/
+1
*
When adding an implicit destructor, make sure to mark it as virtual if it ove...
Anders Carlsson
2009-11-26
1
-0
/
+2
*
Better diagnostic on deleted constructor when no
Fariborz Jahanian
2009-11-25
1
-2
/
+5
*
Diagnose ill-formed uses of default template arguments in
Douglas Gregor
2009-11-25
1
-2
/
+1
*
Eliminate CXXConditionDeclExpr with extreme prejudice.
Douglas Gregor
2009-11-25
1
-0
/
+36
*
Have the parser tell sema whether a member declaration is a function definiti...
Sebastian Redl
2009-11-24
1
-2
/
+3
*
Refactor argument collection of constructor calls using
Fariborz Jahanian
2009-11-24
1
-48
/
+12
*
Let using directives refer to namespace aliases. Fixes PR5479.
Sebastian Redl
2009-11-23
1
-17
/
+14
*
Do not mark declarations as used when performing overload resolution. Fixes P...
Douglas Gregor
2009-11-23
1
-0
/
+2
*
Encapsulate "an array of TemplateArgumentLocs and two angle bracket locations...
John McCall
2009-11-23
1
-1
/
+2
*
"Incremental" progress on using expressions, by which I mean totally ripping
John McCall
2009-11-21
1
-16
/
+7
*
Added rudimentary C++0x attribute support.
Alexis Hunt
2009-11-21
1
-0
/
+20
*
Overhaul previous-declaration and overload checking to work on lookup results
John McCall
2009-11-18
1
-11
/
+11
*
Split LookupResult into its own header.
John McCall
2009-11-18
1
-7
/
+5
*
Incremental progress on using declarations. Split UnresolvedUsingDecl into
John McCall
2009-11-18
1
-12
/
+50
*
Silence some warnings produced by Clang, and add a missing header
Douglas Gregor
2009-11-17
1
-1
/
+1
*
Instead of hanging a using declaration's target decls directly off the using
John McCall
2009-11-17
1
-10
/
+50
*
Unify the way destructor epilogues are generated for synthesized and regular ...
Anders Carlsson
2009-11-17
1
-59
/
+45
*
Carry lookup configuration throughout lookup on the LookupResult. Give
John McCall
2009-11-17
1
-18
/
+19
*
Simplify the AST a bit by skipping creating member initializers for members
Eli Friedman
2009-11-16
1
-8
/
+14
*
First part of changes to eliminate problems with cv-qualifiers and
Douglas Gregor
2009-11-16
1
-8
/
+7
*
Make sure that virtual destructors have delete operators.
Anders Carlsson
2009-11-15
1
-3
/
+23
*
Don't gratuitously mark the default constructors of base or member initialize...
Douglas Gregor
2009-11-15
1
-22
/
+4
*
- Have TryStaticImplicitCast set the cast kind to NoOp when binding a referen...
Sebastian Redl
2009-11-14
1
-4
/
+12
*
When type-checking a static cast (or the static_cast part of a C-style
Douglas Gregor
2009-11-14
1
-46
/
+106
*
If we attempt to add a constructor template specialization that looks
Douglas Gregor
2009-11-14
1
-1
/
+6
*
Clear temporaries in more places.
Anders Carlsson
2009-11-13
1
-0
/
+9
*
Fix bug Doug noticed.
Anders Carlsson
2009-11-13
1
-0
/
+13
*
When transforming an expression statement (e.g., for template
Douglas Gregor
2009-11-13
1
-1
/
+1
*
Give CanQual<T> an implicit conversion to bool, so that it can be used
Douglas Gregor
2009-11-12
1
-1
/
+1
*
Random const correctness, and incidentally use computeDeclContext when building
John McCall
2009-11-12
1
-17
/
+6
*
Diagnose illegally typed operator new/new[].
Fariborz Jahanian
2009-11-10
1
-2
/
+21
*
Improve parsing of template arguments to lay the foundation for
Douglas Gregor
2009-11-10
1
-1
/
+2
*
Use PP.getLocForEndOfToken as suggested by John.
Anders Carlsson
2009-11-10
1
-2
/
+2
*
If a function with a default argument is redefined and the new function also ...
Anders Carlsson
2009-11-10
1
-1
/
+10
[next]