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
*
Alter Action's friend interface to prepare for templated friend declarations and
John McCall
2009-09-11
1
-23
/
+13
*
Cleanup and test C++ default arguments. Improvements include:
Douglas Gregor
2009-09-11
1
-4
/
+55
*
When re-entering a template scope, we may be entering a class template
Douglas Gregor
2009-09-10
1
-3
/
+11
*
Improve handling of initialization by constructor, by ensuring that
Douglas Gregor
2009-09-09
1
-120
/
+171
*
Remove tabs, and whitespace cleanups.
Mike Stump
2009-09-09
1
-403
/
+400
*
Support templateids in friend declarations. Fixes bug 4859.
John McCall
2009-09-08
1
-49
/
+47
*
Handle variadic constructors better. Share code between BuildCXXConstructExpr...
Anders Carlsson
2009-09-08
1
-25
/
+59
*
BuildCXXConstructExpr now takes a MultiExprArg.
Anders Carlsson
2009-09-07
1
-9
/
+12
*
Reapply 81096, now with a fix. Spot the bug:
Anders Carlsson
2009-09-06
1
-2
/
+2
*
Revert "Initialize default CXXConstructExpr arguments to 0. Fixes a crash when
Daniel Dunbar
2009-09-06
1
-2
/
+2
*
Initialize default CXXConstructExpr arguments to 0. Fixes a crash when destro...
Anders Carlsson
2009-09-05
1
-2
/
+2
*
Pass the ConstructLoc to BuildCXXConstructExpr.
Anders Carlsson
2009-09-05
1
-12
/
+10
*
Don't generate any code for an explicit call to a trivial destructor.
Douglas Gregor
2009-09-04
1
-1
/
+1
*
Patch to instantiate destructors used to destruct
Fariborz Jahanian
2009-09-03
1
-0
/
+75
*
Mark constructors used in initialization of base(s) and fields
Fariborz Jahanian
2009-09-03
1
-25
/
+37
*
Issue diagnostics in variety of situations involving
Fariborz Jahanian
2009-09-03
1
-3
/
+176
*
Minor refactoring of my last patch.
Fariborz Jahanian
2009-09-02
1
-5
/
+5
*
Referenced instatiated default constructors
Fariborz Jahanian
2009-09-02
1
-1
/
+19
*
Allow null initialization of scalara data members
Fariborz Jahanian
2009-09-02
1
-2
/
+8
*
Don't assume that a base is always a RecordType, it can also be a TemplateSpe...
Anders Carlsson
2009-09-01
1
-5
/
+16
*
Fix bug 4784 and allow friend declarations to properly extend
John McCall
2009-08-31
1
-4
/
+16
*
Use DiagnoseMissingMember for UsingDecls.
Anders Carlsson
2009-08-30
1
-1
/
+1
*
Improve diagnostics for missing members. This renames the err_typecheck_no_me...
Anders Carlsson
2009-08-30
1
-1
/
+1
*
Set the access specifier for using decls.
Anders Carlsson
2009-08-29
1
-1
/
+4
*
For consistency, just make friend declarations AS_public.
John McCall
2009-08-29
1
-0
/
+2
*
Store the SourceLocation of right parentheses in member initializers. Patch b...
Anders Carlsson
2009-08-29
1
-2
/
+2
*
Fix this for real.
Anders Carlsson
2009-08-28
1
-1
/
+2
*
Pass InOverloadResolution all the way down to IsPointerConversion.
Anders Carlsson
2009-08-28
1
-1
/
+2
*
Instantiate unresolved using declarations.
Anders Carlsson
2009-08-28
1
-2
/
+3
*
Omnibus friend decl refactoring. Instead of cloning AST classes for friend
John McCall
2009-08-28
1
-111
/
+119
*
Create UnresolvedUsingDecls.
Anders Carlsson
2009-08-28
1
-10
/
+9
*
Factor declaration building out to Sema::BuildUsingDeclaration.
Anders Carlsson
2009-08-28
1
-18
/
+28
*
More work on using declarations.
Anders Carlsson
2009-08-28
1
-1
/
+9
*
Many improvements to using declarations.
Anders Carlsson
2009-08-28
1
-19
/
+68
*
Remove more default arguments.
Anders Carlsson
2009-08-27
1
-2
/
+2
*
Remove default arguments from TryImplicitConversion and fix a bug found in th...
Anders Carlsson
2009-08-27
1
-1
/
+4
*
Revert the flags change for now, I have a better idea for this.
Anders Carlsson
2009-08-27
1
-4
/
+1
*
Add a OverloadResolutionFlags and start converting some of the overload metho...
Anders Carlsson
2009-08-27
1
-1
/
+4
*
Don't check member and base initializers if the constructor is dependent.
Anders Carlsson
2009-08-27
1
-27
/
+33
*
Use early returns to avoid indentation.
Anders Carlsson
2009-08-27
1
-72
/
+76
*
Stub out an error so we don't crash.
Eli Friedman
2009-08-27
1
-1
/
+8
*
Add a BuildCXXTemporaryObjectExpr and use it so default arguments will be ins...
Anders Carlsson
2009-08-27
1
-1
/
+32
*
New RequireNonAbstractType function.
Anders Carlsson
2009-08-27
1
-4
/
+14
*
Bye-bye old RequireCompleteType.
Anders Carlsson
2009-08-26
1
-2
/
+4
*
Implement support for C++ direct initializers that involve dependent
Douglas Gregor
2009-08-26
1
-3
/
+19
*
If a parameter has a default argument expression, make sure to instantiate th...
Anders Carlsson
2009-08-25
1
-0
/
+6
*
Improved support for default arguments in constructors for class templates.
Anders Carlsson
2009-08-25
1
-18
/
+17
*
InitializeVarWithConstructor now returns true on failure.
Anders Carlsson
2009-08-25
1
-4
/
+8
*
BuildCXXConstructExpr now returns an OwningExprResult.
Anders Carlsson
2009-08-25
1
-10
/
+16
*
Basic support for default argument expressions for function templates.
Anders Carlsson
2009-08-25
1
-2
/
+2
[next]