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
/
SemaDeclCXX.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
change a couple more c++ sema methods to be based on isinvalid bits.
Chris Lattner
2009-04-25
1
-22
/
+18
*
various "is invalid" cleanups for C++ ctors/dtors.
Chris Lattner
2009-04-25
1
-47
/
+48
*
This is a pretty big cleanup for how invalid decl/type are handle.
Chris Lattner
2009-04-25
1
-6
/
+6
*
Create a CXXConstructExpr instead of a CXXTemporaryObjectExpr in InitializeVa...
Anders Carlsson
2009-04-24
1
-5
/
+2
*
Implement lvalue test for conditional expressions.
Sebastian Redl
2009-04-17
1
-0
/
+2
*
Add support for the __has_trivial_destructor type trait.
Anders Carlsson
2009-04-17
1
-3
/
+15
*
If a class has a non-trivial constructor that doesn't take any arguments, we ...
Anders Carlsson
2009-04-16
1
-10
/
+14
*
Fix a crash bug when comparing overload quality of conversion operators with ...
Sebastian Redl
2009-04-16
1
-1
/
+1
*
When we create an implicit CXXTemporaryObjectExpr we don't need to check that...
Anders Carlsson
2009-04-16
1
-6
/
+1
*
Disable the code I added before until I understand what's causing default2.cp...
Anders Carlsson
2009-04-16
1
-0
/
+5
*
Add support for the __has_trivial_constructor type trait.
Anders Carlsson
2009-04-16
1
-0
/
+30
*
When declaring a variable that has a constructor and a direct initializer, fo...
Anders Carlsson
2009-04-15
1
-9
/
+13
*
fix some out of date comments pointed out by Sebastian
Chris Lattner
2009-04-12
1
-2
/
+1
*
Parse deleted member functions. Parsing member declarations goes through a di...
Sebastian Redl
2009-04-12
1
-3
/
+7
*
Propagate the ASTContext to various AST traversal and lookup functions.
Douglas Gregor
2009-04-09
1
-18
/
+23
*
Introduce a "-fixit" mode to clang-cc that applies code-modification hints.
Douglas Gregor
2009-04-02
1
-1
/
+1
*
Add some more code modification hints
Douglas Gregor
2009-04-01
1
-2
/
+3
*
Push DeclGroup much farther throughout the compiler. Now the various
Chris Lattner
2009-03-29
1
-5
/
+4
*
Reintroduce r67870 (rval ref overloading), since I can't reproduce any test f...
Sebastian Redl
2009-03-29
1
-22
/
+38
*
various cleanups
Chris Lattner
2009-03-29
1
-2
/
+1
*
More improvements to namespace aliases. We now support everything except alia...
Anders Carlsson
2009-03-28
1
-4
/
+18
*
Fix lookup bug
Anders Carlsson
2009-03-28
1
-1
/
+1
*
Create AST nodes for namespace aliases.
Anders Carlsson
2009-03-28
1
-1
/
+6
*
Parse the location of the 'namespace' token to ActOnNamespaceAliasDef. No fun...
Anders Carlsson
2009-03-28
1
-5
/
+5
*
Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a
Chris Lattner
2009-03-28
1
-92
/
+91
*
As Eli pointed out, it is possible that a namespace lookup is ambiguous!
Anders Carlsson
2009-03-28
1
-2
/
+0
*
Check that the alias points to a valid namespace.
Anders Carlsson
2009-03-28
1
-0
/
+15
*
Check that the namespace alias doesn't conflict with a previous declaration i...
Anders Carlsson
2009-03-28
1
-1
/
+13
*
Add an ActOnNamespaceAliasDef action and have the parser call it.
Anders Carlsson
2009-03-28
1
-0
/
+9
*
Revert Sebastian's rvalue patch (r67870) since it caused test failures in
Anders Carlsson
2009-03-28
1
-38
/
+22
*
Better overload resolution for rvalue references.
Sebastian Redl
2009-03-27
1
-22
/
+38
*
Move Sema::SetMemberAccessSpecifier to SemaAccess.cpp
Anders Carlsson
2009-03-27
1
-25
/
+0
*
Improve recovery when a constructor fails to type-check. Test case from Anders
Douglas Gregor
2009-03-27
1
-6
/
+8
*
Revamp our representation of C++ nested-name-specifiers. We now have a
Douglas Gregor
2009-03-26
1
-3
/
+10
*
Add
Anders Carlsson
2009-03-26
1
-17
/
+2
*
Factor the member access specifier setting code into its own function. No int...
Anders Carlsson
2009-03-26
1
-0
/
+40
*
Improve handling of base initializers. We now parse initializers in out of li...
Anders Carlsson
2009-03-25
1
-0
/
+12
*
Parse deleted function definitions and hook them up to Doug's machinery.
Sebastian Redl
2009-03-24
1
-0
/
+16
*
Fix the bug that Eli noticed where we wouldn't look at function decls outside...
Anders Carlsson
2009-03-24
1
-21
/
+45
*
Template instantiation for constructors
Douglas Gregor
2009-03-24
1
-0
/
+9
*
Handle pointers to arrays of abstract types.
Anders Carlsson
2009-03-24
1
-0
/
+9
*
More work on diagnosing abstract classes. We can now handle cases like
Anders Carlsson
2009-03-24
1
-1
/
+48
*
More improvements to abstract type checking. Handle arrays correctly, and mak...
Anders Carlsson
2009-03-23
1
-0
/
+3
*
It's an error to try to allocate an abstract object using new.
Anders Carlsson
2009-03-23
1
-2
/
+2
*
Disallow catching exceptions by rvalue reference.
Sebastian Redl
2009-03-22
1
-3
/
+7
*
Fix build from r67476 and address the easy part of Doug's comments on rvalue ...
Sebastian Redl
2009-03-22
1
-5
/
+4
*
Disallow abstract types where appropriate.
Anders Carlsson
2009-03-22
1
-1
/
+45
*
Keep track of whether a class is abstract or not. This is currently only used...
Anders Carlsson
2009-03-22
1
-1
/
+81
*
Introduce a representation for types that we referred to via a
Douglas Gregor
2009-03-19
1
-2
/
+2
*
The scope representation can now be either a DeclContext pointer or a
Douglas Gregor
2009-03-18
1
-1
/
+1
[next]