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
/
SemaTemplate.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Rename FunctionProtoType accessors from 'arguments' to 'parameters'
Alp Toker
2014-01-20
1
-4
/
+4
*
Clean up variable template handling a bit, and correct the behavior of name
Richard Smith
2014-01-16
1
-6
/
+11
*
PR18401: Fix assert by implementing the current proposed direction of core
Richard Smith
2014-01-09
1
-15
/
+19
*
PR18234: Mark a tag definition as invalid early if it appears in a
Richard Smith
2014-01-08
1
-1
/
+2
*
Sort all the #include lines with LLVM's utils/sort_includes.py which
Chandler Carruth
2014-01-07
1
-1
/
+1
*
It turns out the problem was a bit more wide-spread. Removing a lot of unneed...
Aaron Ballman
2014-01-03
1
-11
/
+7
*
PR18246: When performing template argument deduction to decide which template
Richard Smith
2013-12-14
1
-3
/
+3
*
Take into consideration calling convention when processing specializations.
Rafael Espindola
2013-12-10
1
-1
/
+4
*
Sema: Enforce C++11 pointer-to-member template arguments should rules
David Majnemer
2013-12-10
1
-3
/
+1
*
Give a more appropriate diagnostic when a template specialization or
Richard Smith
2013-12-07
1
-31
/
+33
*
Per [dcl.meaning]p1, a name in an inline namespace can be redeclared using a
Richard Smith
2013-12-05
1
-1
/
+2
*
Reject template-ids containing literal-operator-ids that have a dependent
Richard Smith
2013-12-05
1
-2
/
+1
*
Fix crash if a dependent template-id was assumed to be a type but instantiates
Richard Smith
2013-12-04
1
-1
/
+2
*
Fix several crash-on-invalids when using template-ids that aren't
Richard Smith
2013-12-04
1
-1
/
+1
*
Handle CC and NoReturn when instantiating members of class templates.
Rafael Espindola
2013-12-01
1
-1
/
+2
*
Sema: Instantiate local class and their members appropriately
David Majnemer
2013-11-27
1
-1
/
+4
*
Remove a whole lot of unused variables
Alp Toker
2013-11-27
1
-5
/
+0
*
Further fixes when thiscall is the default for methods.
Rafael Espindola
2013-11-19
1
-16
/
+3
*
Issue a diagnostic if we see a templated friend declaration that we do not
Richard Smith
2013-11-08
1
-3
/
+4
*
Sema: Emit a nicer diagnostic when IndirectFieldDecls show up inappropriately...
David Majnemer
2013-10-26
1
-2
/
+2
*
Sema: Correctly build pointer-to-member arguments from a template argument wi...
David Majnemer
2013-10-26
1
-1
/
+2
*
Sema: Allow IndirectFieldDecl to appear in a non-type template argument
David Majnemer
2013-10-22
1
-1
/
+4
*
Sema: Do not allow template declarations inside local classes
David Majnemer
2013-10-22
1
-2
/
+14
*
Convert anachronistic use of 'void *' to 'DeclContext *' in Scope that was a ...
Ted Kremenek
2013-10-08
1
-1
/
+1
*
Make InstantiatingTemplate depth checks clearer
Alp Toker
2013-10-08
1
-11
/
+10
*
Fix a bug where we failed to diagnose class template specialization
Chandler Carruth
2013-09-27
1
-0
/
+3
*
Variable templates: handle instantiation of static data member templates
Richard Smith
2013-09-27
1
-7
/
+2
*
Implement restriction that a partial specialization must actually specialize
Richard Smith
2013-09-24
1
-3
/
+82
*
Remove some dead code.
Richard Smith
2013-09-18
1
-6
/
+3
*
Fix accepts-invalid if a variable template explicit instantiation is missing an
Richard Smith
2013-09-18
1
-9
/
+19
*
getMostSpecialized for function template sets is never used in the context of a
Richard Smith
2013-09-10
1
-2
/
+2
*
Ignore noreturn when checking function template specializations
Reid Kleckner
2013-09-10
1
-2
/
+5
*
Ignore calling conventions when checking function template specializations
Reid Kleckner
2013-09-10
1
-3
/
+13
*
Simplify. This function bails out a few lines above if !Found.empty().
Richard Smith
2013-09-03
1
-1
/
+1
*
Sema: Subst type default template args earlier
David Majnemer
2013-08-28
1
-32
/
+41
*
Cleanup of OpaquePtr. No functionality changes.
Serge Pavlov
2013-08-27
1
-4
/
+4
*
A clean-up pass, exploring the unification of traversals of class, variable a...
Larisse Voufo
2013-08-23
1
-3
/
+4
*
Use pop_back_val() instead of both back() and pop_back().
Robert Wilhelm
2013-08-23
1
-2
/
+1
*
Sema: Properly support Microsoft-mode template arguments
David Majnemer
2013-08-23
1
-95
/
+148
*
Remove SequenceNumber from class/variable template partial specializations.
Richard Smith
2013-08-22
1
-8
/
+2
*
Improve support for static data member templates. This revision still has at ...
Larisse Voufo
2013-08-22
1
-1
/
+4
*
Sema: Remove dead code in CheckTemplateArgumentAddressOfObjectOrFunction
David Majnemer
2013-08-19
1
-8
/
+0
*
Refactor all diagnosing of TypoCorrections through a common function, in
Richard Smith
2013-08-17
1
-14
/
+6
*
Bug fix: disallow a variable template to be redeclared as a non-templated var...
Larisse Voufo
2013-08-14
1
-33
/
+0
*
Implement [class.friend]p11's special name lookup rules for friend declarations
Richard Smith
2013-08-09
1
-2
/
+2
*
PR9992: Serialize and deserialize the token sequence for a function template in
Richard Smith
2013-08-07
1
-3
/
+18
*
A bit of clean up based on peer's feedback...
Larisse Voufo
2013-08-06
1
-5
/
+5
*
Started implementing variable templates. Top level declarations should be ful...
Larisse Voufo
2013-08-06
1
-61
/
+584
*
PR16288: A template is only missing a default template argument if it provides
Richard Smith
2013-07-22
1
-4
/
+1
*
SemaTemplate.cpp: Prune a stray "\param NumParamLists" in comment. [-Wdocumen...
NAKAMURA Takumi
2013-07-22
1
-2
/
+0
[next]