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
...
*
Switch the C++ new expression over to InitializationSequence, rather
Douglas Gregor
2009-12-16
1
-14
/
+14
*
ShouldDestroyTemporaries? I don't think so.
Anders Carlsson
2009-12-15
1
-2
/
+1
*
This patch should fix PR2461. It allows clang to apply the noreturn
Mike Stump
2009-12-15
1
-5
/
+4
*
Fix the handling of dependent enums per C++ DR 502.
Eli Friedman
2009-12-11
1
-4
/
+18
*
Don't complain about falling off the end of a function with an asm
Mike Stump
2009-12-10
1
-0
/
+5
*
Clean up enum constants so that they're finally sane. Fixes PR3173 and a
Eli Friedman
2009-12-10
1
-14
/
+4
*
Improve the diagnostic when a new declaration conflicts with a using shadow
John McCall
2009-12-10
1
-0
/
+9
*
Move initialization via initializer list over to InitializationSequences.
Douglas Gregor
2009-12-10
1
-4
/
+5
*
Implement redeclaration checking and hiding semantics for using declarations....
John McCall
2009-12-10
1
-4
/
+7
*
Fix for PR5515: allow "merging" array bounds both forwards and backwards.
Eli Friedman
2009-12-10
1
-4
/
+13
*
Reimplement reference initialization (C++ [dcl.init.ref]) using the
Douglas Gregor
2009-12-09
1
-3
/
+31
*
First pass at implementing C++ enum semantics: calculate (and store) an
John McCall
2009-12-09
1
-15
/
+40
*
Don't warn about function templates or function template specializations.
Anders Carlsson
2009-12-09
1
-5
/
+13
*
Rename Sema::IsOverload to Sema::CheckOverload. Teach it to ignore unresolved
John McCall
2009-12-09
1
-24
/
+34
*
Move the missing prototypes checking out into a new function. Don't warn abou...
Anders Carlsson
2009-12-09
1
-17
/
+38
*
Fix for PR5710: make sure to put function template specializations into the
Eli Friedman
2009-12-08
1
-4
/
+4
*
Rework how virtual member functions are marked. If a class has no key functio...
Anders Carlsson
2009-12-07
1
-10
/
+3
*
DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated varia...
John McCall
2009-12-07
1
-40
/
+40
*
Move RequireCompleteType requirement for fields early into ActOnField so that
Eli Friedman
2009-12-07
1
-7
/
+14
*
remove some extraneous syntax: sourceloc implicitly converts to sourcerange.
Chris Lattner
2009-12-06
1
-3
/
+3
*
Pass the desired vtable linkage to GenerateVtable directly. Only call MaybeMa...
Anders Carlsson
2009-12-06
1
-1
/
+3
*
Diagnose declarations of implicit member functions.
Anders Carlsson
2009-12-04
1
-25
/
+55
*
Make sure that overridden method decls are always canonical.
Anders Carlsson
2009-12-04
1
-1
/
+1
*
When recovering from an invalid forward reference to an enum type in C++,
John McCall
2009-12-04
1
-2
/
+6
*
A new helper function to set various bits in the class when
Fariborz Jahanian
2009-12-03
1
-8
/
+1
*
Unify the end-of-class code paths used by the parser and template
Douglas Gregor
2009-12-03
1
-6
/
+12
*
In Sema, whenever we think that a function is going to cause a vtable to be g...
Anders Carlsson
2009-12-02
1
-3
/
+5
*
Rip out the last remaining implicit use of OverloadedFunctionDecl in Sema:
John McCall
2009-12-02
1
-5
/
+2
*
Push overloaded function templates through the parser using a totally different
John McCall
2009-12-02
1
-7
/
+2
*
Fix another "operator delete missing" crash: make sure we don't check
Eli Friedman
2009-12-02
1
-2
/
+6
*
Funtion templates and function template specializations do not
Douglas Gregor
2009-12-01
1
-2
/
+5
*
Move the checking of overridden virtual functions into the code path
Douglas Gregor
2009-12-01
1
-16
/
+9
*
An inherited virtual (where "virtual" wasn't written explicitly) can
Douglas Gregor
2009-12-01
1
-1
/
+1
*
Remove all of Sema's explicit uses of OverloadedFunctionDecl except for
John McCall
2009-11-30
1
-36
/
+0
*
Eliminate the use of OverloadedFunctionDecl in member expressions.
John McCall
2009-11-30
1
-1
/
+1
*
Use StringRef in Attr constructors.
Benjamin Kramer
2009-11-30
1
-4
/
+2
*
Add DeclarationName support for C++0x operator literals. They should now work as
Alexis Hunt
2009-11-29
1
-1
/
+2
*
Fix 80-cols violations
Alexis Hunt
2009-11-29
1
-3
/
+3
*
Add Parser support for C++0x literal operators ('operator "" i').
Alexis Hunt
2009-11-28
1
-1
/
+4
*
Fix thinko.
Anders Carlsson
2009-11-27
1
-2
/
+1
*
Correctly find overridden destructors.
Anders Carlsson
2009-11-26
1
-2
/
+15
*
Allow user re-definition of SEL as well as accessing its fields.
Fariborz Jahanian
2009-11-25
1
-1
/
+1
*
Diagnose ill-formed uses of default template arguments in
Douglas Gregor
2009-11-25
1
-0
/
+10
*
Encapsulate "an array of TemplateArgumentLocs and two angle bracket locations...
John McCall
2009-11-23
1
-7
/
+5
*
This patch implements objective-c's 'SEL' type as a built-in
Fariborz Jahanian
2009-11-21
1
-1
/
+3
*
Added rudimentary C++0x attribute support.
Alexis Hunt
2009-11-21
1
-2
/
+2
*
Implement C++ [basic.lookup.classref]p3, which states how the type
Douglas Gregor
2009-11-20
1
-22
/
+59
*
Overhaul previous-declaration and overload checking to work on lookup results
John McCall
2009-11-18
1
-170
/
+247
*
Track overriding methods when instantiating a template class. Fixes PR5550.
Sebastian Redl
2009-11-18
1
-18
/
+22
*
Split LookupResult into its own header.
John McCall
2009-11-18
1
-9
/
+9
[prev]
[next]