index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Sema
/
SemaDecl.cpp
Age
Commit message (
Expand
)
Author
2008-05-09
-Implement proper name lookup for namespaces.
Argyrios Kyrtzidis
2008-05-09
Add attribute "format" support for typedefs of function pointers.
Ted Kremenek
2008-05-09
Handle all attributes on a parameter
Nate Begeman
2008-05-09
Fix rdar://5921025 a crash on the included testcase.
Chris Lattner
2008-05-08
Added initial support for supporting __NSString__ in attribute "format".
Ted Kremenek
2008-05-07
Diagnose attempts to use C++ default arguments outside of a function declaration
Douglas Gregor
2008-05-05
Fix rdar://5905347 a crash on invalid builtin, due to the
Chris Lattner
2008-05-05
Add support for -Wimplicit-function-declaration, rdar://5907433
Chris Lattner
2008-05-01
Replace Sema::CheckInitializerListTypes() with a helper class (InitListChecke...
Steve Naroff
2008-05-01
Implicitly defined functions were getting the DeclContext of the function whe...
Argyrios Kyrtzidis
2008-04-30
fix 'var unused' warning.
Chris Lattner
2008-04-27
Parsing of namespaces:
Argyrios Kyrtzidis
2008-04-25
initial support for recognizing __transparent_union__ attributes
Nuno Lopes
2008-04-22
"This patch renames
Chris Lattner
2008-04-21
Clean up handling of function redeclarations
Douglas Gregor
2008-04-18
OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris.
Nate Begeman
2008-04-18
fix __attribute__(format) for struct function pointer fields
Nuno Lopes
2008-04-17
Use TranslationUnitDecl as DeclContext of builtin functions.
Argyrios Kyrtzidis
2008-04-17
Addition of TranslationUnitDecl to the AST:
Argyrios Kyrtzidis
2008-04-15
Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVar...
Steve Naroff
2008-04-13
Introduce support for finding class and enum names via ordinary name lookup i...
Douglas Gregor
2008-04-13
This patch is just the easy part of the class names patch, which
Chris Lattner
2008-04-12
Added PushOnScopeChains method to Sema, that adds a decl to both the IdResolv...
Argyrios Kyrtzidis
2008-04-11
Minor changes per Chris L's review.
Fariborz Jahanian
2008-04-11
Switch sema to maintaining its own scope chain information for variable
Chris Lattner
2008-04-10
Patch for:
Fariborz Jahanian
2008-04-10
typedef void T;
Chris Lattner
2008-04-10
Several improvements from Doug Gregor related to default
Chris Lattner
2008-04-08
Add support for C++ default arguments, and rework Parse-Sema
Chris Lattner
2008-04-06
remove the Decl::getCanonicalType() method.
Chris Lattner
2008-04-06
Start switching clients over from CT.getCanonicalType() to Context.getCanonic...
Chris Lattner
2008-04-06
This patch contains these changes:
Chris Lattner
2008-04-04
Add explicit support for diagnosing implicit function decls.
Steve Naroff
2008-04-04
Introduce ContextDecl, patch by Argiris Kirtzidis!
Chris Lattner
2008-04-02
Change ObjCInterfaceDecl to inherit from NamedDecl (not TypeDecl). While ObjC...
Steve Naroff
2008-04-02
Two changes to Sema::LookupDecl() interface.
Steve Naroff
2008-04-02
Fix several bugs in array -> pointer decomposition.
Chris Lattner
2008-04-02
Fix PR2017 and silence some bogus errors.
Chris Lattner
2008-04-02
Fix a comment typo and add a couple suggestions from Chris.
Steve Naroff
2008-04-01
Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass ...
Steve Naroff
2008-03-26
Alloc redeclaration of typedefs within ExternCSystemHeaderDir's AND SystemHea...
Steve Naroff
2008-03-25
allow the format attribute to be specified in function pointer prototypes
Nuno Lopes
2008-03-25
Extend QualType::getAddressSpace to do the right thing for array types, and in
Nate Begeman
2008-03-19
Fix http://llvm.org/bugs/show_bug.cgi?id=2161.
Steve Naroff
2008-03-16
hoist a bunch of casting.
Chris Lattner
2008-03-16
Add create methods for ObjCIvarDecl and ObjCInterfaceDecl
Chris Lattner
2008-03-16
switch the rest of the C decl classes to do their
Chris Lattner
2008-03-15
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner