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
Commit message (
Expand
)
Author
Age
Files
Lines
*
fix pr18645. Correct logic concerning 'T &&' deduction against lvalues.
Nathan Sidwell
2015-01-10
1
-30
/
+17
*
Add a new warning, -Wself-move, to Clang.
Richard Trieu
2015-01-10
1
-1
/
+87
*
Fix temporary lifetime extension from an initializer using braced "functional"
Richard Smith
2015-01-10
1
-7
/
+7
*
Sema: Don't crash when variable is redefined as a constexpr function
David Majnemer
2015-01-09
1
-1
/
+1
*
Parse: Don't crash when namespace is in GNU statement expr
David Majnemer
2015-01-09
1
-5
/
+0
*
Fix crash in typo correction while correcting enum within a struct in C
Olivier Goffart
2015-01-09
1
-2
/
+4
*
Sema: RecordDecl shouldn't have a FunctionDecl as a Decl
David Majnemer
2015-01-09
1
-1
/
+6
*
Sema: Don't crash when specializing a global scope function in a class
David Majnemer
2015-01-09
1
-1
/
+1
*
Sema: Remove some dead code from CreateNewFunctionDecl
David Majnemer
2015-01-09
1
-3
/
+0
*
PR22117: Fix a case where we would get confused about which function parameter
Richard Smith
2015-01-09
2
-7
/
+29
*
Don't invent a '$auto-x-y' name for auto types in generic lambdas. This is no
Richard Smith
2015-01-09
1
-11
/
+2
*
Wrap to 80 columns. No behavior change.
Nico Weber
2015-01-07
1
-29
/
+20
*
Handle OpaqueValueExprs more intelligently in the TransformTypos tree
Kaelyn Takata
2015-01-07
2
-1
/
+9
*
Fix grammar-o in comment.
Nico Weber
2015-01-06
1
-1
/
+1
*
Sema: analyze I,J,K,M,N,O constraints
Saleem Abdulrasool
2015-01-06
1
-0
/
+14
*
Wrap to 80 columns, no behavior change.
Nico Weber
2015-01-04
1
-4
/
+7
*
Document that GetTypeForDeclarator() cannot return a null type.
Nico Weber
2015-01-04
1
-13
/
+12
*
Crash less enthusiasticially on _Atomic or __restrict__ on invalid types.
Nico Weber
2015-01-04
1
-0
/
+6
*
Instantiation of a CXXMethodDecl may fail when the parameter type cannot be i...
Nick Lewycky
2015-01-02
1
-2
/
+4
*
Remove a comment that appears a second time 22 lines further down.
Nico Weber
2014-12-30
1
-3
/
+0
*
Don't crash on an invalid trailing return type on a function before a '...'
Nico Weber
2014-12-30
1
-5
/
+5
*
Sema: Permit array l-values in asm output operands
David Majnemer
2014-12-29
1
-0
/
+3
*
Sema: Only permit permit modifiable l-values as asm output params
David Majnemer
2014-12-29
1
-14
/
+42
*
Sema: Don't crash when solitary :: token appears before { in struct def
David Majnemer
2014-12-29
1
-1
/
+1
*
Sema: Forbid inconsistent constraint alternatives
David Majnemer
2014-12-29
1
-0
/
+20
*
Sema: Variable templates cannot be static bitfield members
David Majnemer
2014-12-28
1
-1
/
+1
*
Sema: Permit an atomic type to be initialized by the same atomic type
David Majnemer
2014-12-28
1
-1
/
+5
*
Sema: Don't crash when an inject class name has a nested redefinition
David Majnemer
2014-12-28
1
-3
/
+2
*
Objective-C: Tweak unavailability warning.
Nico Weber
2014-12-27
1
-1
/
+1
*
[x86] Add range checking to the constant argument of cmpps/pd/ss/sd builtinas.
Craig Topper
2014-12-27
1
-4
/
+8
*
Address review feedback on r221933.
Nico Weber
2014-12-27
3
-74
/
+83
*
WIP
David Majnemer
2014-12-26
1
-16
/
+16
*
This reverts commit r224668 and r224667.
Rafael Espindola
2014-12-23
1
-7
/
+0
*
Fix for PR21758
Richard Trieu
2014-12-20
1
-0
/
+7
*
Don't drop attributes when checking explicit specializations.
Nico Weber
2014-12-19
1
-6
/
+3
*
DR1048: drop top-level cv-qualifiers when deducing the return type of a
Richard Smith
2014-12-19
2
-3
/
+12
*
Attributes accepting an EnumArgument are allowed to pass a string literal, or...
Aaron Ballman
2014-12-19
1
-2
/
+8
*
PR21969: Improve diagnostics for a conversion function that has any pieces of a
Richard Smith
2014-12-19
1
-4
/
+88
*
[c Sema]. Patch fixes pointer-bool-conversion warning on C code
Fariborz Jahanian
2014-12-18
1
-2
/
+2
*
Revert "Don't build invalid AST nodes during recovery"
Reid Kleckner
2014-12-18
1
-1
/
+1
*
Fix diagnostic for static methods referencing fields from using decls
Reid Kleckner
2014-12-18
1
-2
/
+4
*
Don't assume friended C++ method decls have qualifiers
Reid Kleckner
2014-12-17
1
-2
/
+2
*
Adding a -Wunused-value warning for expressions with side effects used in an ...
Aaron Ballman
2014-12-17
4
-3
/
+42
*
[c++1z] Fixes for generalized non-type template argument support: check for
Richard Smith
2014-12-17
1
-42
/
+45
*
Don't build invalid AST nodes during recovery
Reid Kleckner
2014-12-17
1
-1
/
+1
*
Sema: Don't dyn_cast a null pointer in CheckUsingDeclQualifier
David Majnemer
2014-12-17
1
-1
/
+1
*
DR1684: a constexpr member function need not be a member of a literal class t...
Richard Smith
2014-12-16
1
-36
/
+0
*
Try typo correction on all initialization arguments and be less
Kaelyn Takata
2014-12-16
1
-7
/
+5
*
Look at whether TransformTypos returned a different Expr instead of looking a...
Nick Lewycky
2014-12-16
1
-1
/
+2
*
Fix typo in comment. NFC.
Nick Lewycky
2014-12-16
1
-1
/
+1
[next]