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
/
SemaDecl.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Sema: Don't crash when an inject class name has a nested redefinition
David Majnemer
2014-12-28
1
-3
/
+2
*
Try typo correction on all initialization arguments and be less
Kaelyn Takata
2014-12-16
1
-7
/
+5
*
Renamed RefersToEnclosingLocal bitfield to RefersToCapturedVariable.
Alexey Bataev
2014-12-16
1
-1
/
+1
*
Warn when attribute 'optnone' conflicts with attributes on a
Paul Robinson
2014-12-15
1
-0
/
+6
*
Create a new 'flag_enum' attribute.
Alexis Hunt
2014-11-28
1
-8
/
+78
*
When checking for uninitialized values, do not confuse "std::move" with every
Richard Trieu
2014-11-27
1
-1
/
+2
*
Properly correct initializer expressions based on whether they would be valid.
Kaelyn Takata
2014-11-21
1
-0
/
+17
*
Fix missing diagnostic for unsupported TLS for some thread_local variables.
Bob Wilson
2014-11-21
1
-16
/
+14
*
Fix an assertion when ending a function definition.
John McCall
2014-11-18
1
-1
/
+2
*
Remove some redundant virtual specifiers on overriden functions.
David Blaikie
2014-11-14
1
-1
/
+1
*
PR21437, final part of DR1330: delay-parsing of exception-specifications. This
Richard Smith
2014-11-13
1
-0
/
+1
*
Move the no-prototype calling conv check after decl merging
Reid Kleckner
2014-11-03
1
-13
/
+14
*
Don't diagnose no-prototype callee-cleanup function definitions
Reid Kleckner
2014-11-03
1
-15
/
+15
*
Don't dllimport inline functions when targeting MinGW (PR21366)
Hans Wennborg
2014-11-03
1
-0
/
+8
*
Have -Wuninitialized catch uninitalized use in overloaded operator arguments.
Richard Trieu
2014-10-31
1
-4
/
+7
*
Remove StorageClass typedefs from VarDecl and FunctionDecl since StorageClass...
Craig Topper
2014-10-31
1
-14
/
+11
*
Follow-up to r216619: use isCXXCLassMember() instead of trying to
Hans Wennborg
2014-10-29
1
-1
/
+1
*
Pass around CorrectionCandidateCallbacks as unique_ptrs so
Kaelyn Takata
2014-10-27
1
-29
/
+28
*
Add frontend support for __vectorcall
Reid Kleckner
2014-10-24
1
-2
/
+2
*
Add RestrictQualifierLoc to DeclaratorChunk::FunctionTypeInfo
Hal Finkel
2014-10-20
1
-0
/
+1
*
Sema: handle additional case of qualified types
Saleem Abdulrasool
2014-10-16
1
-2
/
+1
*
MS Compat: mark globals emitted in read-only sections const
Hans Wennborg
2014-10-16
1
-4
/
+6
*
Adding attributes to the IndirectFieldDecl that we generate for anonymous str...
Aaron Ballman
2014-10-15
1
-4
/
+6
*
-ms-extensions: Allow __super in return stements.
Nikola Smiljanic
2014-10-04
1
-5
/
+1
*
MS ABI: Disallow dllimported/exported variables from having TLS
David Majnemer
2014-10-04
1
-1
/
+12
*
Sema: Simplify checkAttributesAfterMerging
David Majnemer
2014-10-04
1
-8
/
+1
*
Update -Wuninitialized to be stricter on CK_NoOp casts.
Richard Trieu
2014-09-30
1
-5
/
+10
*
Add back checking for condition of conditional operator for -Wuninitialized
Richard Trieu
2014-09-26
1
-0
/
+1
*
-ms-extensions: Implement __super scope specifier (PR13236).
Nikola Smiljanic
2014-09-26
1
-1
/
+8
*
Add increment/decrement operators and compound assignment operators to the
Richard Trieu
2014-09-25
1
-0
/
+16
*
Sema: Inherit the flexible array property from struct fields
David Majnemer
2014-09-24
1
-9
/
+6
*
Fix an edge case with BinaryOperator's in -Wuninitialized. Add testcases for
Richard Trieu
2014-09-24
1
-2
/
+4
*
Improve -Wuninitialized to take into account field ordering with initializer
Richard Trieu
2014-09-23
1
-1
/
+87
*
ms-inline-asm: Scope inline asm labels to functions
Ehsan Akhgari
2014-09-22
1
-2
/
+8
*
Follow-up to r214408: Warn on other callee-cleanup functions without prototyp...
Nico Weber
2014-09-19
1
-5
/
+9
*
Sema: Diagnose undefined structs used as Microsoft anonymous structs
David Majnemer
2014-09-18
1
-5
/
+11
*
Allow empty statements in naked functions in addition to ASM statements
Ehsan Akhgari
2014-09-09
1
-1
/
+1
*
Add -Wunused-local-typedef, a warning that finds unused local typedefs.
Nico Weber
2014-09-06
1
-3
/
+39
*
Stop double visiting some expressions during self reference checking.
Richard Trieu
2014-09-04
1
-5
/
+17
*
Don't allow non-ASM statements in naked functions
Hans Wennborg
2014-09-04
1
-0
/
+11
*
Don't load invalid enum value in Sema::LazilyCreateBuiltin.
Alexey Samsonov
2014-08-28
1
-10
/
+8
*
[C++11] Support for capturing of variable length arrays in lambda expression.
Alexey Bataev
2014-08-28
1
-0
/
+4
*
More -Wuninitialized updates
Richard Trieu
2014-08-27
1
-4
/
+19
*
Allow adding dll attributes on certain redecls with a warning if the decl has...
Hans Wennborg
2014-08-27
1
-6
/
+23
*
Clarify comment so this doesn't appear to be a C11-only rule.
Richard Smith
2014-08-26
1
-0
/
+3
*
revert patch r216469.
Fariborz Jahanian
2014-08-26
1
-1
/
+1
*
c11- Check for c11 language option as documentation says
Fariborz Jahanian
2014-08-26
1
-1
/
+1
*
Passing a variable to std::move now counts as a use for -Wuninitialized
Richard Trieu
2014-08-26
1
-0
/
+15
*
PR20716 - Crash when recovering from type in known dependent base.
Nikola Smiljanic
2014-08-24
1
-1
/
+4
*
Fix PR20705, crash on invalid.
Richard Trieu
2014-08-22
1
-1
/
+1
[prev]
[next]