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
/
SemaDecl.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Funtion templates and function template specializations do not
Douglas Gregor
2009-12-01
1
-2
/
+5
*
Move the checking of overridden virtual functions into the code path
Douglas Gregor
2009-12-01
1
-16
/
+9
*
An inherited virtual (where "virtual" wasn't written explicitly) can
Douglas Gregor
2009-12-01
1
-1
/
+1
*
Remove all of Sema's explicit uses of OverloadedFunctionDecl except for
John McCall
2009-11-30
1
-36
/
+0
*
Eliminate the use of OverloadedFunctionDecl in member expressions.
John McCall
2009-11-30
1
-1
/
+1
*
Use StringRef in Attr constructors.
Benjamin Kramer
2009-11-30
1
-4
/
+2
*
Add DeclarationName support for C++0x operator literals. They should now work as
Alexis Hunt
2009-11-29
1
-1
/
+2
*
Fix 80-cols violations
Alexis Hunt
2009-11-29
1
-3
/
+3
*
Add Parser support for C++0x literal operators ('operator "" i').
Alexis Hunt
2009-11-28
1
-1
/
+4
*
Fix thinko.
Anders Carlsson
2009-11-27
1
-2
/
+1
*
Correctly find overridden destructors.
Anders Carlsson
2009-11-26
1
-2
/
+15
*
Allow user re-definition of SEL as well as accessing its fields.
Fariborz Jahanian
2009-11-25
1
-1
/
+1
*
Diagnose ill-formed uses of default template arguments in
Douglas Gregor
2009-11-25
1
-0
/
+10
*
Encapsulate "an array of TemplateArgumentLocs and two angle bracket locations...
John McCall
2009-11-23
1
-7
/
+5
*
This patch implements objective-c's 'SEL' type as a built-in
Fariborz Jahanian
2009-11-21
1
-1
/
+3
*
Added rudimentary C++0x attribute support.
Alexis Hunt
2009-11-21
1
-2
/
+2
*
Implement C++ [basic.lookup.classref]p3, which states how the type
Douglas Gregor
2009-11-20
1
-22
/
+59
*
Overhaul previous-declaration and overload checking to work on lookup results
John McCall
2009-11-18
1
-170
/
+247
*
Track overriding methods when instantiating a template class. Fixes PR5550.
Sebastian Redl
2009-11-18
1
-18
/
+22
*
Split LookupResult into its own header.
John McCall
2009-11-18
1
-9
/
+9
*
Incremental progress on using declarations. Split UnresolvedUsingDecl into
John McCall
2009-11-18
1
-1
/
+8
*
Unify the way destructor epilogues are generated for synthesized and regular ...
Anders Carlsson
2009-11-17
1
-1
/
+1
*
Carry lookup configuration throughout lookup on the LookupResult. Give
John McCall
2009-11-17
1
-36
/
+44
*
First part of changes to eliminate problems with cv-qualifiers and
Douglas Gregor
2009-11-16
1
-3
/
+2
*
Make sure that virtual destructors have delete operators.
Anders Carlsson
2009-11-15
1
-2
/
+9
*
Deallocation functions must also be static.
Anders Carlsson
2009-11-15
1
-1
/
+7
*
allocation functions are always static.
Anders Carlsson
2009-11-15
1
-1
/
+10
*
If any errors have occurred by the time we hit the end of a function body, cl...
Douglas Gregor
2009-11-15
1
-0
/
+6
*
Fix for PR5489: don't skip the complete type requrirement for variable
Eli Friedman
2009-11-14
1
-2
/
+7
*
Revert r88718, which does NOT solve the constructor-template-as-copy-construc...
Douglas Gregor
2009-11-13
1
-3
/
+0
*
A constructor template cannot be instantiated to a copy
Douglas Gregor
2009-11-13
1
-0
/
+3
*
Fix bug Doug noticed.
Anders Carlsson
2009-11-13
1
-0
/
+2
*
Random const correctness, and incidentally use computeDeclContext when building
John McCall
2009-11-12
1
-1
/
+1
*
Improve parsing of template arguments to lay the foundation for
Douglas Gregor
2009-11-10
1
-3
/
+2
*
Make sure that Type::getAs<ArrayType>() (or Type::getAs<subclass of
Douglas Gregor
2009-11-09
1
-1
/
+1
*
When checking the namespace of a redeclaration or definition, look through li...
Sebastian Redl
2009-11-08
1
-11
/
+16
*
Don't treat variables with non-trivial ctors or dtors as unused. Fixes PR5407.
Anders Carlsson
2009-11-07
1
-2
/
+16
*
Cleanup, no functionality change.
Anders Carlsson
2009-11-07
1
-4
/
+8
*
Make sure that EnumConstantDecls always get a type, even when they have type-...
Douglas Gregor
2009-11-06
1
-14
/
+20
*
Don't allow definitions of array variables without some size information in C...
Sebastian Redl
2009-11-05
1
-0
/
+10
*
Change our basic strategy for avoiding deprecation warnings when the decl use
John McCall
2009-11-04
1
-1
/
+4
*
Use ParseUnqualifiedId when parsing id-expressions. This eliminates
Douglas Gregor
2009-11-03
1
-43
/
+47
*
Introduce a new class, UnqualifiedId, that provides a parsed
Douglas Gregor
2009-11-03
1
-34
/
+37
*
Make sure to call CompleteConstructorCall for bases and members that are init...
Anders Carlsson
2009-10-29
1
-0
/
+3
*
Track source information for template arguments and template specialization
John McCall
2009-10-29
1
-1
/
+1
*
Use array's base element type in getting to its
Fariborz Jahanian
2009-10-28
1
-1
/
+1
*
Removed an unnecessary arguement passed to InitializeVarWithConstructor
Fariborz Jahanian
2009-10-28
1
-1
/
+1
*
Rename FunctionDecl::isInline/setInline to
Douglas Gregor
2009-10-27
1
-1
/
+1
*
Almost missed this one... Doc update for last change.
Mike Stump
2009-10-27
1
-4
/
+5
*
Refine noreturn handling. Fixes -Wmissing-noreturn so that it doesn't
Mike Stump
2009-10-27
1
-5
/
+14
[next]