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
/
ParseDecl.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Wrap to 80 columns. No behavior change.
Nico Weber
2015-02-18
1
-9
/
+11
*
Don't crash on `struct ::, struct ::` (and the same for enums).
Nico Weber
2015-02-15
1
-2
/
+5
*
Initial support for C++ parameter completion
Francisco Lopes da Silva
2015-01-21
1
-1
/
+5
*
Fix crash-on-invalid and name lookup when recovering from ~X::X() typo.
Richard Smith
2015-01-15
1
-1
/
+10
*
Parse: Switch to using EOF tokens for late parsed attributes
David Majnemer
2015-01-13
1
-12
/
+15
*
Parse: Don't crash if missing an initializer expression
David Majnemer
2015-01-13
1
-1
/
+2
*
Parse: Further simplify ParseLexedMethodDeclaration
David Majnemer
2015-01-13
1
-8
/
+0
*
[PowerPC]To provide better compatibility with gcc I added the __bool keyword ...
Bill Seurer
2015-01-12
1
-0
/
+5
*
Parse: Get rid of tok::cxx_defaultarg_end, use EOF instead
David Majnemer
2015-01-12
1
-1
/
+2
*
Parse: __attribute__((keyword)) shouldn't error
David Majnemer
2015-01-03
1
-3
/
+4
*
Parse: Don't crash when 'typename' shows up in an attribute
David Majnemer
2014-12-28
1
-1
/
+2
*
PR21969: Improve diagnostics for a conversion function that has any pieces of a
Richard Smith
2014-12-19
1
-1
/
+1
*
Correct delayed typos in the operand to typeof expressions.
Kaelyn Takata
2014-12-19
1
-2
/
+2
*
Diagnose function template definitions inside functions
Reid Kleckner
2014-12-15
1
-3
/
+5
*
Parse qualifiers after comma in declarator lists as a Microsoft extension
Nico Rieck
2014-12-04
1
-0
/
+40
*
Fix PR21684 - Ellipsis following an 'auto' parameter sans name/ID
Faisal Vali
2014-12-04
1
-7
/
+8
*
[OpenCL] Generic address space has been added in OpenCL v2.0.
Anastasia Stulova
2014-11-26
1
-0
/
+25
*
Enable ActOnIdExpression to use delayed typo correction for non-C++ code
Kaelyn Takata
2014-11-21
1
-1
/
+2
*
PR21565: Further refine the conditions for enabling eager parsing of
Richard Smith
2014-11-20
1
-2
/
+18
*
Wire up delayed typo correction to DiagnoseEmptyLookup and set up
Kaelyn Takata
2014-11-20
1
-1
/
+3
*
Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator...
David Blaikie
2014-11-19
1
-1
/
+1
*
PR21565 Add an egregious hack to support broken libstdc++ headers that declare
Richard Smith
2014-11-14
1
-1
/
+2
*
PR21437, final part of DR1330: delay-parsing of exception-specifications. This
Richard Smith
2014-11-13
1
-2
/
+8
*
Improve diagnostics if _Noreturn is placed after a function declarator. (This...
Richard Smith
2014-11-10
1
-1
/
+22
*
Updated the wording for a diagnostic to be more grammatically correct, and us...
Aaron Ballman
2014-11-08
1
-1
/
+1
*
[c++1z] Support for attributes on namespaces and enumerators.
Aaron Ballman
2014-11-08
1
-4
/
+9
*
Patch for small addition to availability attribute.
Fariborz Jahanian
2014-11-05
1
-0
/
+13
*
PR21367: Don't accept rvalue references as an extension in C++98 mode if we'r...
Richard Smith
2014-10-28
1
-5
/
+17
*
Add frontend support for __vectorcall
Reid Kleckner
2014-10-24
1
-9
/
+26
*
Remove unused StmtVector& parameters from declaration parsing functions.
Rafael Espindola
2014-10-22
1
-5
/
+4
*
Add RestrictQualifierLoc to DeclaratorChunk::FunctionTypeInfo
Hal Finkel
2014-10-20
1
-0
/
+3
*
Patch to wrap up '_' as separator in version numbers
Fariborz Jahanian
2014-10-06
1
-2
/
+2
*
Add comment about separators must match in
Fariborz Jahanian
2014-10-03
1
-0
/
+1
*
Diagnose mixed use of '_' and '.' as version
Fariborz Jahanian
2014-10-02
1
-2
/
+7
*
Patch to accept '_' in addition to '.' as version
Fariborz Jahanian
2014-10-02
1
-3
/
+8
*
-ms-extensions: Implement __super scope specifier (PR13236).
Nikola Smiljanic
2014-09-26
1
-0
/
+1
*
Parse: Replace polymorphic functor objects with lambdas and llvm::function_ref.
Benjamin Kramer
2014-09-03
1
-23
/
+15
*
PR20760: Don't assert (and produce better diagnostics) if a default initializer
Richard Smith
2014-08-27
1
-2
/
+1
*
C++1y is now C++14!
Aaron Ballman
2014-08-19
1
-1
/
+1
*
Reject virt-specifiers on friend declarations. Give anonymous bitfields a
Richard Smith
2014-08-12
1
-1
/
+2
*
Reject varargs '...' in function prototype if there are more parameters after
Richard Smith
2014-08-11
1
-5
/
+36
*
Parser: Array decls with static but without array size are illformed
David Majnemer
2014-08-08
1
-0
/
+5
*
Parse: Don't crash on trailing whitespace before EOF
David Majnemer
2014-07-26
1
-1
/
+4
*
Disallowing GNU-style attributes in new expressions, since they are prohibite...
Aaron Ballman
2014-07-22
1
-18
/
+27
*
Avoid crash if default argument parsed with errors.
Serge Pavlov
2014-07-22
1
-2
/
+2
*
Parse: Diagnose malformed 'message' arguments for 'availability' attr
David Majnemer
2014-07-18
1
-1
/
+12
*
Removing a FIXME from the attribute parsing code by now passing along the sco...
Aaron Ballman
2014-07-16
1
-31
/
+35
*
Improve error recovery around colon.
Serge Pavlov
2014-07-16
1
-9
/
+18
*
Revert "Improve error recovery around colon."
Reid Kleckner
2014-07-14
1
-15
/
+9
*
Improve error recovery around colon.
Serge Pavlov
2014-07-14
1
-9
/
+15
[next]