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
/
SemaLookup.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Be a bit smarter about what nested name qualifiers to allow when
Kaelyn Uhrain
2014-03-21
1
-7
/
+11
*
[C++11] Simplify some loops in Sema::CorrectTypo as range-based for loops.
Kaelyn Uhrain
2014-03-21
1
-24
/
+14
*
[C++11] Replacing DeclContext iterators using_directives_begin() and using_di...
Aaron Ballman
2014-03-17
1
-9
/
+7
*
[C++11] Replacing Scope iterators using_directives_begin() and using_directiv...
Aaron Ballman
2014-03-17
1
-4
/
+2
*
[C++11] Replacing Scope iterators decl_begin() and decl_end() with iterator_r...
Aaron Ballman
2014-03-17
1
-3
/
+2
*
[C++11] Replacing ObjCObjectPointerType iterators qual_begin() and qual_end()...
Aaron Ballman
2014-03-17
1
-4
/
+2
*
[C++11] Replacing FunctionProtoType iterators param_type_begin() and param_ty...
Aaron Ballman
2014-03-17
1
-5
/
+2
*
Call RequireCompleteType when performing ADL even if the type is already
Richard Smith
2014-03-14
1
-6
/
+8
*
[C++11] Removing the types_begin() and types_end() APIs and replacing with a ...
Aaron Ballman
2014-03-14
1
-4
/
+2
*
[C++11] Replacing DeclContext iterators lookups_begin() and lookups_end() wit...
Aaron Ballman
2014-03-14
1
-7
/
+3
*
[C++11] Replacing ObjCCategoryDecl iterators protocol_begin() and protocol_en...
Aaron Ballman
2014-03-14
1
-3
/
+2
*
[C++11] Replacing ObjCProtocolDecl iterators protocol_begin() and protocol_en...
Aaron Ballman
2014-03-13
1
-3
/
+2
*
[C++11] Replacing ObjCInterfaceDecl iterators visible_categories_begin() and ...
Aaron Ballman
2014-03-13
1
-5
/
+2
*
[C++11] Replacing ObjCInterfaceDecl iterators all_referenced_protocol_begin()...
Aaron Ballman
2014-03-13
1
-4
/
+2
*
[C++11] Replacing CXXRecordDecl iterators bases_begin() and bases_end() with ...
Aaron Ballman
2014-03-13
1
-8
/
+4
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-12
1
-3
/
+3
*
Replace OwningPtr with std::unique_ptr.
Ahmed Charles
2014-03-07
1
-1
/
+1
*
[C++11] Updating getUsingDirectives to use iterator_range instead of a std::p...
Aaron Ballman
2014-03-07
1
-8
/
+5
*
[C++11] Replacing iterators redecls_begin() and redecls_end() with iterator_r...
Aaron Ballman
2014-03-06
1
-3
/
+2
*
[C++11] Replace llvm::tie with std::tie.
Benjamin Kramer
2014-03-02
1
-7
/
+7
*
[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.
Benjamin Kramer
2014-03-02
1
-1
/
+1
*
Don't suggest non-static methods as corrections when they obviously
Kaelyn Uhrain
2014-02-28
1
-5
/
+27
*
PR18685: Ignore class template specializations as potential
Kaelyn Uhrain
2014-02-09
1
-0
/
+7
*
Don't consider records with a NULL identifier as a name for typo correction.
Kaelyn Uhrain
2014-02-05
1
-1
/
+1
*
Add implicit declarations of allocation functions when looking them up for
Richard Smith
2014-02-04
1
-21
/
+19
*
Rename getResultType() on function and method declarations to getReturnType()
Alp Toker
2014-01-25
1
-1
/
+1
*
Don't forget about a builtin if we're about to redeclare it and we couldn't
Richard Smith
2014-01-22
1
-8
/
+0
*
Introduce and use Decl::getAsFunction() to simplify templated function checks
Alp Toker
2014-01-22
1
-23
/
+7
*
Rename FunctionProtoType accessors from 'arguments' to 'parameters'
Alp Toker
2014-01-20
1
-8
/
+9
*
Rename language option MicrosoftMode to MSVCCompat
Alp Toker
2014-01-14
1
-1
/
+1
*
Use the appropriate SourceLocation for the template backtrace when doing
Nick Lewycky
2014-01-11
1
-1
/
+1
*
Eliminate the last trivial NDEBUG uses in clang headers
Alp Toker
2013-12-07
1
-1
/
+2
*
Sema: Make helper function static.
Benjamin Kramer
2013-11-01
1
-1
/
+1
*
PR17731: When determining whether a tag and a non-tag were declared in the same
Richard Smith
2013-10-30
1
-2
/
+17
*
Allow CorrectTypo to replace CXXScopeSpecifiers that refer to classes.
Kaelyn Uhrain
2013-10-19
1
-1
/
+13
*
Be smarter about deciding to add a leading '::' to a
Kaelyn Uhrain
2013-10-19
1
-22
/
+49
*
Merge NamespaceSpecifierSet's AddNamespace and AddRecord as they are
Kaelyn Uhrain
2013-10-19
1
-75
/
+9
*
PR17592: Ensure we diagnose shadowing a template parameter with a local extern
Richard Smith
2013-10-16
1
-2
/
+4
*
Fixed code style of my change.
Serge Pavlov
2013-10-15
1
-1
/
+1
*
Do not use typo correction that is unaccessible.
Serge Pavlov
2013-10-14
1
-2
/
+9
*
Convert anachronistic use of 'void *' to 'DeclContext *' in Scope that was a ...
Ted Kremenek
2013-10-08
1
-15
/
+12
*
Add support for WG21 N3599 (literal operator template for strings) as a GNU
Richard Smith
2013-10-07
1
-13
/
+32
*
Silencing an MSVC warning; SmallSet::count returns a bool instead of a size_t.
Aaron Ballman
2013-10-05
1
-1
/
+1
*
Speed up CorrectTypo by avoiding lookups on unreasonable candidates.
Kaelyn Uhrain
2013-10-02
1
-37
/
+47
*
Fix typo correction usage of SemaAccess.cpp.
Eli Friedman
2013-10-01
1
-1
/
+1
*
Cache the location of failed typo corrections so that typo correction
Kaelyn Uhrain
2013-09-27
1
-25
/
+26
*
Teach typo correction to look inside of classes like it does namespaces.
Kaelyn Uhrain
2013-09-26
1
-5
/
+102
*
Switch the semantic DeclContext for a block-scope declaration of a function or
Richard Smith
2013-09-20
1
-2
/
+42
*
PR13657 (and duplicates):
Richard Smith
2013-09-12
1
-1
/
+2
*
C++ modules: if a class is defined in multiple modules (for instance, because
Richard Smith
2013-09-09
1
-1
/
+1
[next]