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
*
Fix a regression that allowed clearly ill formed code. The diagnostic is still
Chandler Carruth
2010-08-31
1
-0
/
+2
*
Rename DeclContext::getLookupContext to getRedeclContext and change its seman...
Sebastian Redl
2010-08-31
1
-13
/
+11
*
Add redeclaration checking for static data members and fix a corner
Douglas Gregor
2010-08-30
1
-3
/
+22
*
Fix the memory leak of FloatingLiteral/IntegerLiteral.
Argyrios Kyrtzidis
2010-08-28
1
-2
/
+1
*
Miscellaneous found by inspection with John and Sebastian
Douglas Gregor
2010-08-27
1
-20
/
+18
*
One who seeks knowledge learns something new every day.
John McCall
2010-08-26
1
-9
/
+1
*
De-memberify the VarDecl and FunctionDecl StorageClass enums.
John McCall
2010-08-26
1
-57
/
+57
*
Split out a header to hold APIs meant for the Sema implementation from Sema.h.
John McCall
2010-08-25
1
-1
/
+1
*
GCC didn't care for my attempt at API compatibility, so brute-force everything
John McCall
2010-08-25
1
-3
/
+3
*
More incremental progress towards not including Expr.h in Sema.h.
John McCall
2010-08-25
1
-1
/
+1
*
Split FunctionScopeInfo and BlockScopeInfo into their own header.
John McCall
2010-08-25
1
-10
/
+14
*
Remove Sema.h's dependency on DeclCXX.h.
John McCall
2010-08-25
1
-0
/
+1
*
Remove AnalysisBasedWarnings.h's dependency on Type.h
John McCall
2010-08-25
1
-5
/
+3
*
It turns out that this template is only instantiated at one type.
John McCall
2010-08-24
1
-0
/
+20
*
More header elimination. The goal of all this is to allow Parser to
John McCall
2010-08-24
1
-0
/
+13
*
Struggle mightily against header inclusion in Sema.h.
John McCall
2010-08-24
1
-0
/
+5
*
OwningExprResult -> ExprResult. This patch brought to you by
John McCall
2010-08-24
1
-5
/
+5
*
Abstract out passing around types and kill off ActionBase.
John McCall
2010-08-24
1
-29
/
+36
*
Diagnose the presence of multiple initializations of static data
Douglas Gregor
2010-08-24
1
-0
/
+21
*
Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*).
John McCall
2010-08-23
1
-25
/
+9
*
Handling remaining rule for synthesize bitfields in
Fariborz Jahanian
2010-08-23
1
-0
/
+42
*
Support for IRGen of synthesize bitfield ivars in
Fariborz Jahanian
2010-08-23
1
-2
/
+6
*
Push DeclGroupRefs and TemplateNames in an opaque but type-safe way
John McCall
2010-08-23
1
-2
/
+1
*
Sundry incremental steps towards killing off Action.
John McCall
2010-08-23
1
-2
/
+2
*
DeclPtrTy -> Decl *
John McCall
2010-08-21
1
-116
/
+103
*
Another step in the process of making the parser depend on Sema:
John McCall
2010-08-20
1
-2
/
+2
*
Generate Attr subclasses with TableGen.
Alexis Hunt
2010-08-18
1
-30
/
+50
*
Emit an error if an array is too large. We're slightly more strict
Douglas Gregor
2010-08-18
1
-12
/
+39
*
StringRef'ication of lots stuff, patch by Peter Davies!
Daniel Dunbar
2010-08-17
1
-1
/
+1
*
A field of incomplete type is sufficiently disruptive that we should mark
John McCall
2010-08-16
1
-1
/
+4
*
Emit diagnostic error when the field of an anonymous struct is non trivial.
Argyrios Kyrtzidis
2010-08-16
1
-21
/
+42
*
Don't warn for the common pattern of disallowing copying:
Argyrios Kyrtzidis
2010-08-15
1
-12
/
+30
*
Commit improved version of 111026 & 111027.
Argyrios Kyrtzidis
2010-08-15
1
-18
/
+65
*
Revert 111026 & 111027, build breakage.
Argyrios Kyrtzidis
2010-08-13
1
-46
/
+18
*
The unused warnings extravaganza continues. Warn for:
Argyrios Kyrtzidis
2010-08-13
1
-5
/
+19
*
Expand the unused warnings for functions. Warn for:
Argyrios Kyrtzidis
2010-08-13
1
-18
/
+32
*
Change Sema's UnusedStaticFuncs to UnusedFileScopedDecls to allow also keepin...
Argyrios Kyrtzidis
2010-08-13
1
-12
/
+24
*
Move Sema's headers into include/clang/Sema, renaming a few along the way.
Douglas Gregor
2010-08-12
1
-3
/
+3
*
Fix a crash on invalid when declaring an implicit member of a class with an
John McCall
2010-08-12
1
-1
/
+7
*
Added locations and type source info for DeclarationName.
Abramo Bagnara
2010-08-11
1
-76
/
+112
*
Speculatively revert r110610 " Make ObjCInterfaceDecl redeclarable,
Douglas Gregor
2010-08-11
1
-0
/
+39
*
Fix redefinition of typedefs of fixable variably-modified array types; should
Eli Friedman
2010-08-10
1
-8
/
+10
*
- Make ObjCInterfaceDecl redeclarable, and create separate decl nodes for for...
Sebastian Redl
2010-08-09
1
-39
/
+0
*
Store inheritance paths after CastExprs instead of inside them.
John McCall
2010-08-07
1
-5
/
+5
*
Make sure that we diagnose attribute((overloadable)) functions without
Douglas Gregor
2010-08-06
1
-19
/
+15
*
Template keyword should not be ignored building a QualifiedTemplateName.
Abramo Bagnara
2010-08-06
1
-1
/
+2
*
Diagnose the use of "inline" on block-scope function declarations in
Douglas Gregor
2010-08-06
1
-0
/
+11
*
Properly pop out of Objective-C method declarations when they are (ill-formedly)
John McCall
2010-08-06
1
-1
/
+3
*
Implement #pragma GCC visibility.
Eli Friedman
2010-08-05
1
-0
/
+15
*
Only look up an 'operator delete' on the definition of a destructor, not on
John McCall
2010-08-04
1
-7
/
+5
[next]