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
/
Sema.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
Properly switch into the declaring scope of a template when performing
John McCall
2010-04-29
1
-0
/
+24
*
Ensure that cv-qualifiers are correctly removed for post-inc/decrements
Alexis Hunt
2010-04-28
1
-153
/
+153
*
Completely reimplement __builtin_offsetof, based on a patch by Roberto
Douglas Gregor
2010-04-28
1
-0
/
+5
*
More of Sema to implement initialization of
Fariborz Jahanian
2010-04-28
1
-3
/
+5
*
Move CollectIvarsToConstructOrDestruct to Sema
Fariborz Jahanian
2010-04-27
1
-0
/
+6
*
Make the InjectedClassNameType the canonical type of the current instantiation
John McCall
2010-04-27
1
-0
/
+1
*
Improve source-location information in a C++ typeid (type) expression
Douglas Gregor
2010-04-26
1
-0
/
+9
*
Refactor Objective-C @catch parameter checking by detangling it from
Douglas Gregor
2010-04-26
1
-1
/
+7
*
Add base paths for CK_BaseToDerived and CK_BaseToDerivedMemberPointer.
Anders Carlsson
2010-04-24
1
-0
/
+1
*
Actually produce base paths for CastExprs of kind CK_DerivedToBase.
Anders Carlsson
2010-04-24
1
-3
/
+10
*
Pass the base specifiers through to CheckDerivedToBaseConversion. No function...
Anders Carlsson
2010-04-24
1
-1
/
+3
*
CastExpr should not hold a pointer to the base path. More cleanup.
Anders Carlsson
2010-04-24
1
-2
/
+3
*
Rename InheritancePath to BasePath, rename CastExpr::CXXBaseVector to CXXBase...
Anders Carlsson
2010-04-24
1
-1
/
+1
*
Keep track of when DependentNameTypes have no associated keyword
Douglas Gregor
2010-04-24
1
-1
/
+2
*
Rework Parser-Sema interface for Objective-C @catch exception object
Douglas Gregor
2010-04-23
1
-1
/
+1
*
Improve the AST representation of Objective-C @try/@catch/@finally
Douglas Gregor
2010-04-23
1
-3
/
+3
*
Add an InheritancePath parameter to the ImplicitCastExpr constructor.
Anders Carlsson
2010-04-23
1
-0
/
+1
*
Kill off IDNS_ObjCImplementation and IDNS_ObjCCategoryName; they
Douglas Gregor
2010-04-22
1
-3
/
+1
*
Implement template instantiation for Objective-C++ @throw statements.
Douglas Gregor
2010-04-22
1
-0
/
+2
*
When a dependent Objective-C++ message send was able to resolve the
Douglas Gregor
2010-04-22
1
-0
/
+2
*
Remove the SelectorLoc argument to Sema::BuildInstanceMesssage and
Douglas Gregor
2010-04-22
1
-2
/
+0
*
Re-land the patch that merges two diagnostics into one now that it passes sel...
Anders Carlsson
2010-04-22
1
-1
/
+3
*
Revert "Unify two diagnostics into one.", it breaks with an assertion failure...
Daniel Dunbar
2010-04-22
1
-1
/
+0
*
Unify two diagnostics into one.
Anders Carlsson
2010-04-22
1
-0
/
+1
*
Whenever we complain about a failed initialization of a function or
Douglas Gregor
2010-04-22
1
-1
/
+2
*
Migrate the responsibility for turning the receiver name in an
Douglas Gregor
2010-04-21
1
-2
/
+3
*
Rework the Parser-Sema interaction for Objective-C message
Douglas Gregor
2010-04-21
1
-18
/
+45
*
Pass the InitializedEntity to Sema::CheckConstructorAccess and use it to repo...
Anders Carlsson
2010-04-21
1
-0
/
+1
*
Remove dead code.
Benjamin Kramer
2010-04-20
1
-5
/
+0
*
Keep proper source location information for the type in an Objective-C
Douglas Gregor
2010-04-20
1
-1
/
+1
*
Do not diagnose unused-parameter errors in template instantiations. We
Douglas Gregor
2010-04-19
1
-1
/
+7
*
Keep track of the actual storage specifier written on a variable or
Douglas Gregor
2010-04-19
1
-1
/
+2
*
In C++98/03, when binding a reference to an rvalue of
Douglas Gregor
2010-04-18
1
-1
/
+1
*
Improve our handling of user-defined conversions as part of overload
Douglas Gregor
2010-04-17
1
-5
/
+2
*
Consolidate most of the integer constant expression builtin requirement
Eric Christopher
2010-04-17
1
-2
/
+2
*
Switch Sema::FindCompositePointerType() over to InitializationSequence.
Douglas Gregor
2010-04-16
1
-1
/
+1
*
Make Sema::BuildCXXCastArgument static, since it now only has one caller. No ...
Douglas Gregor
2010-04-16
1
-6
/
+0
*
Collapse the three separate initialization paths in
Douglas Gregor
2010-04-16
1
-9
/
+1
*
Kill ForceRValue once and for all
Douglas Gregor
2010-04-16
1
-1
/
+0
*
Move Sema::TryCopyInitialization into a static function in
Douglas Gregor
2010-04-16
1
-5
/
+0
*
Eliminate the ForceRValue parameter to Sema::AddOverloadCandidate
Douglas Gregor
2010-04-16
1
-1
/
+0
*
Eliminate the ForceRValue parameter from most of Sema's Add*Candidate
Douglas Gregor
2010-04-16
1
-8
/
+4
*
Eliminate the ForceRValue parameter from Sema::IsUserDefinedConversion. It's ...
Douglas Gregor
2010-04-16
1
-1
/
+1
*
Eliminate the default value for the UserCast parameter of Sema::IsUserDefined...
Douglas Gregor
2010-04-16
1
-1
/
+1
*
Eliminate the Elidable parameter to PerformImplicitConversion; we
Douglas Gregor
2010-04-16
1
-3
/
+1
*
Feed proper source-location information into Sema::LookupSingleResult,
Douglas Gregor
2010-04-15
1
-5
/
+10
*
Thread a Scope pointer into BuildRecoveryCallExpr to help typo
Douglas Gregor
2010-04-14
1
-1
/
+1
*
Teach typo correction about various language keywords. We can't
Douglas Gregor
2010-04-14
1
-0
/
+24
*
Return the corrected DeclarationName from Sema::CorrectTypo rather
Douglas Gregor
2010-04-14
1
-4
/
+4
*
Implement typo correction for Objective-C message sends when the
Douglas Gregor
2010-04-14
1
-0
/
+6
[next]