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
*
Improve diagnostic for redeclaring static member function. Fixes PR16382.
Eli Friedman
2013-06-19
1
-1
/
+1
*
Fix pr16354.
Rafael Espindola
2013-06-19
1
-1
/
+21
*
DR14, DR101, and part of DR1: fix handling of extern "C" declarations in
Richard Smith
2013-06-18
1
-34
/
+40
*
Clean up empty struct/union recognition.
Serge Pavlov
2013-06-17
1
-13
/
+15
*
C++11: don't warn about the deprecated 'register' keyword if it's combined with
Richard Smith
2013-06-17
1
-2
/
+12
*
Unify return type checking for functions and ObjC methods. Move all the
Eli Friedman
2013-06-14
1
-17
/
+0
*
Allow clang to build __clear_cache on ARM.
Rafael Espindola
2013-06-13
1
-1
/
+2
*
Remove some unicode that sneaked in.
David Majnemer
2013-06-11
1
-1
/
+1
*
Implement DR85: Redeclaration of member is forbidden
David Majnemer
2013-06-11
1
-0
/
+10
*
Use FPT::getArgTypes() instead of manually building ArrayRefs
Reid Kleckner
2013-06-10
1
-10
/
+3
*
Revert "[Sema] Make FunctionType's TSI use unadjusted argument types"
Reid Kleckner
2013-06-08
1
-36
/
+31
*
[Sema] Make FunctionType's TSI use unadjusted argument types
Reid Kleckner
2013-06-08
1
-31
/
+36
*
Recognition of empty structures and unions is moved to semantic stage
Serge Pavlov
2013-06-08
1
-0
/
+35
*
Microsoft has a language extension which allows union members to be
Aaron Ballman
2013-05-30
1
-3
/
+7
*
Disallow extern decls of type void in C++ mode
David Majnemer
2013-05-29
1
-5
/
+9
*
[ms-cxxabi] Look up operator delete() at every virtual dtor declaration.
Peter Collingbourne
2013-05-20
1
-4
/
+21
*
Implement __declspec(selectany) under -fms-extensions
Reid Kleckner
2013-05-20
1
-0
/
+9
*
Check a pointer is not null before attempting to use it. This prevents a
Richard Trieu
2013-05-16
1
-2
/
+4
*
Cleanup handling of UniqueExternalLinkage.
Rafael Espindola
2013-05-13
1
-11
/
+11
*
Avoid patching storage class for block scope thread_local variables.
Enea Zaffanella
2013-05-10
1
-16
/
+17
*
C++1y auto return type: when a function contains no 'return' statements at all,
Richard Smith
2013-05-10
1
-13
/
+18
*
Try to recognise hidden tag type names in potential declarations, in ObjC cod...
Argyrios Kyrtzidis
2013-05-07
1
-12
/
+10
*
Replace 'MultiExprArg()' with 'None'
Dmitri Gribenko
2013-05-05
1
-3
/
+3
*
Make all 'is in extern "C"' tests use the lexical context.
Rafael Espindola
2013-05-05
1
-5
/
+3
*
Use lexical contexts when checking for conflicting language linkages.
Rafael Espindola
2013-05-05
1
-2
/
+2
*
Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constr...
Dmitri Gribenko
2013-05-05
1
-3
/
+1
*
In VarDecl nodes, store the thread storage class specifier as written.
Enea Zaffanella
2013-05-04
1
-3
/
+1
*
Implement most of N3638 (return type deduction for normal functions).
Richard Smith
2013-05-04
1
-7
/
+49
*
Say 'decltype(auto)' not 'auto' as appropriate in mismatched-deduction diagno...
Richard Smith
2013-05-04
1
-0
/
+1
*
PR15906: The body of a lambda is not an evaluated subexpression; don't visit ...
Richard Smith
2013-05-03
1
-1
/
+1
*
ArrayRef'ize InitializationSequence constructor and InitializationSequence::D...
Dmitri Gribenko
2013-05-03
1
-10
/
+8
*
Add const qualifier to Sema::getTypeName's parameter `II`
Dmitri Gribenko
2013-05-03
1
-1
/
+1
*
Use attribute argument information to determine when to parse attribute argum...
Douglas Gregor
2013-05-02
1
-2
/
+2
*
Revert r180970; it's causing breakage.
Douglas Gregor
2013-05-02
1
-2
/
+2
*
Use attribute argument information to determine when to parse attribute argum...
Douglas Gregor
2013-05-02
1
-2
/
+2
*
When deducing an 'auto' type, don't modify the type-as-written.
Richard Smith
2013-04-30
1
-7
/
+7
*
Don't treat a non-deduced 'auto' type as being type-dependent. Instead, there
Richard Smith
2013-04-30
1
-54
/
+68
*
ArrayRef'ize Sema::ActOnEnumBody. No functionality change.
Dmitri Gribenko
2013-04-27
1
-9
/
+9
*
Implement C++1y decltype(auto).
Richard Smith
2013-04-26
1
-3
/
+2
*
Don't mark 'extern "C" void f(void)' as having extern storage class.
Rafael Espindola
2013-04-25
1
-10
/
+16
*
C++1y constexpr extensions, round 1: Allow most forms of declaration and
Richard Smith
2013-04-22
1
-1
/
+1
*
The 'constexpr implies const' rule for non-static member functions is gone in
Richard Smith
2013-04-21
1
-2
/
+17
*
Suppress unused warning on static inline function template specializations.
Rafael Espindola
2013-04-16
1
-1
/
+4
*
Remove hasExternalLinkageUncached.
Rafael Espindola
2013-04-15
1
-16
/
+9
*
Local thread_local variables are implicitly 'static'. (This doesn't apply to ...
Richard Smith
2013-04-15
1
-2
/
+11
*
Properly check for a constant initializer for a thread-local variable.
Richard Smith
2013-04-15
1
-1
/
+2
*
Diagnose if a __thread or _Thread_local variable has a non-constant initializer
Richard Smith
2013-04-14
1
-0
/
+22
*
Handle incompatible redeclarations of library builtins better.
John McCall
2013-04-14
1
-11
/
+21
*
Annotate flavor of TLS variable (statically or dynamically initialized) onto ...
Richard Smith
2013-04-13
1
-10
/
+20
*
Don't replace an existing decl in the scope chains with its
John McCall
2013-04-13
1
-28
/
+0
[next]