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
/
Parse
/
ParseCXXInlineMethods.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Don't crash on surprising tokens in default parameter template lists.
Nico Weber
2014-12-28
1
-1
/
+1
*
Fix layering violation, Lex shouldn't know about Decl
David Majnemer
2014-12-19
1
-2
/
+2
*
Parse: Don't parse after the eof has been consumed
David Majnemer
2014-12-18
1
-1
/
+4
*
PR21565: Further refine the conditions for enabling eager parsing of
Richard Smith
2014-11-20
1
-7
/
+6
*
Wire up delayed typo correction to DiagnoseEmptyLookup and set up
Kaelyn Takata
2014-11-20
1
-0
/
+1
*
PR21437, final part of DR1330: delay-parsing of exception-specifications. This
Richard Smith
2014-11-13
1
-0
/
+70
*
PR20760: Don't assert (and produce better diagnostics) if a default initializer
Richard Smith
2014-08-27
1
-18
/
+29
*
Fix default argument comma disambiguation bug following the 'template' keyword.
Richard Smith
2014-07-27
1
-0
/
+1
*
Avoid crash if default argument parsed with errors.
Serge Pavlov
2014-07-22
1
-1
/
+2
*
Refactoring. Remove release and take methods from ActionResult. Rename takeAs...
Nikola Smiljanic
2014-05-29
1
-2
/
+2
*
Emit used/dllexport inline method definitions in nested classes (PR19743, PR1...
Hans Wennborg
2014-05-23
1
-0
/
+3
*
[C++11] Use 'nullptr'. Parser edition.
Craig Topper
2014-05-21
1
-5
/
+6
*
Replace a fake enum class with the real thing.
Richard Smith
2014-05-16
1
-6
/
+6
*
Wrap to 80 columns. No behavior change.
Nico Weber
2014-05-10
1
-8
/
+12
*
Rename getResultType() on function and method declarations to getReturnType()
Alp Toker
2014-01-25
1
-1
/
+1
*
Introduce and use Decl::getAsFunction() to simplify templated function checks
Alp Toker
2014-01-22
1
-13
/
+7
*
PR18477: Create a function scope representing the constructor call when
Richard Smith
2014-01-17
1
-1
/
+4
*
ExpectAndConsume: Diagnose errors automatically
Alp Toker
2014-01-01
1
-3
/
+3
*
Support and use token kinds as diagnostic arguments
Alp Toker
2013-12-24
1
-13
/
+15
*
Refactor and micro-optimize ConsumeToken()
Alp Toker
2013-12-17
1
-18
/
+10
*
Generate a marker token when entering or leaving a submodule when building a
Richard Smith
2013-11-23
1
-0
/
+6
*
Replaced bool parameters in SkipUntil function with single bit-based parameter.
Alexey Bataev
2013-11-18
1
-1
/
+1
*
Support return type deduction for templates in -fdelayed-template-parsing (mi...
Faisal Vali
2013-11-01
1
-2
/
+4
*
Parse: Disable delayed template parsing for constexpr functions
David Majnemer
2013-10-23
1
-0
/
+1
*
Check "late parsed" friend functions for redefinition
Alp Toker
2013-10-18
1
-1
/
+3
*
Parse: Template specializations which aren't dependent needn't have their par...
David Majnemer
2013-09-14
1
-4
/
+5
*
PR13657 (and duplicates):
Richard Smith
2013-09-12
1
-4
/
+283
*
Remove Inheritable/NonInheritable flags from ProcessDeclAttributes. They don't
Richard Smith
2013-08-29
1
-2
/
+1
*
PR9992: Serialize and deserialize the token sequence for a function template in
Richard Smith
2013-08-07
1
-9
/
+4
*
Started implementing variable templates. Top level declarations should be ful...
Larisse Voufo
2013-08-06
1
-3
/
+3
*
PR16480: Reimplement token-caching for constructor initializer lists. This
Richard Smith
2013-07-04
1
-59
/
+147
*
Add null check (resolves PR16423)
Stephen Lin
2013-06-23
1
-15
/
+14
*
Keep the parser's template depth up to date when parsing local templates and
Richard Smith
2013-04-29
1
-9
/
+27
*
Implement C++1y decltype(auto).
Richard Smith
2013-04-26
1
-2
/
+1
*
[Parser] Don't code-complete twice.
Argyrios Kyrtzidis
2013-03-27
1
-2
/
+2
*
Flag that friend function definitions are "late parsed" so that
John McCall
2013-03-14
1
-5
/
+24
*
Finish semantic analysis for [[carries_dependency]] attribute.
Richard Smith
2013-01-28
1
-2
/
+2
*
Tighten types a bit. No functionality change.
Rafael Espindola
2013-01-08
1
-2
/
+2
*
s/CPlusPlus0x/CPlusPlus11/g
Richard Smith
2013-01-02
1
-4
/
+4
*
Sort all of Clang's files under 'lib', and fix up the broken headers
Chandler Carruth
2012-12-04
1
-3
/
+3
*
Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl...
Benjamin Kramer
2012-08-23
1
-1
/
+1
*
Rip out remnants of move semantic emulation and smart pointers in Sema.
Benjamin Kramer
2012-08-23
1
-2
/
+2
*
Support the use of "=delete" and "=default" with delayed template
Douglas Gregor
2012-06-28
1
-0
/
+1
*
PR13064: Store whether an in-class initializer uses direct or copy
Richard Smith
2012-06-10
1
-2
/
+2
*
CXXThisScopeRAII objects aren't free, don't compute one if it's unused.
Benjamin Kramer
2012-05-17
1
-1
/
+1
*
Refactor DelayedDiagnostics so that it keeps diagnostics in
John McCall
2012-05-07
1
-0
/
+1
*
Revert most of r154844, which was disabled in r155975. Keep around the
Richard Smith
2012-05-02
1
-71
/
+1
*
Implement the last part of C++ [class.mem]p2, delaying the parsing of
Douglas Gregor
2012-04-16
1
-1
/
+72
*
Implement C++11 [expr.prim.general]p3, which permits the use of 'this'
Douglas Gregor
2012-04-16
1
-5
/
+16
*
Fix the other place where C++98 work for initializer lists was necessary.
Sebastian Redl
2012-03-20
1
-2
/
+3
[next]