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
*
Rework parsing of pure-specifiers. Perform the grammar matching and
Richard Smith
2015-06-30
1
-7
/
+3
*
[clang] Refactoring of conditions so they use isOneOf() instead of multiple i...
Daniel Marjamaki
2015-06-18
1
-5
/
+4
*
Cleanup: no need to pass DefinitionKind into ParseCXXInlineMethodDef
Eli Bendersky
2015-03-23
1
-5
/
+3
*
Record correct source range for defaulted/deleted members.
Eli Bendersky
2015-03-23
1
-0
/
+7
*
Parse: Don't assume tokens have a length
David Majnemer
2015-03-19
1
-7
/
+3
*
FIX PR 18432, default args, friends & late-parsed members.
Nathan Sidwell
2015-02-19
1
-1
/
+12
*
Code cleanup
Nathan Sidwell
2015-01-30
1
-10
/
+8
*
Parse: use the EOF token method to lex inline method bodies
David Majnemer
2015-01-13
1
-20
/
+23
*
Parse: Further simplify ParseLexedMethodDeclaration
David Majnemer
2015-01-13
1
-30
/
+33
*
Parse: Get rid of cxx_exceptspec_end, use EOF instead
David Majnemer
2015-01-12
1
-2
/
+5
*
Parse: Just a small tidy-up in ParseLexedMethodDeclaration
David Majnemer
2015-01-12
1
-5
/
+7
*
Parse: Get rid of tok::cxx_defaultarg_end, use EOF instead
David Majnemer
2015-01-12
1
-3
/
+7
*
Parse: It's cleaner to handle cxx_defaultarg_end in SkipUntil directly
David Majnemer
2015-01-12
1
-0
/
+1
*
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
[next]