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
/
SemaType.cpp
Age
Commit message (
Expand
)
Author
2008-08-27
First wave of changes to support "blocks" (an extension to C).
Steve Naroff
2008-08-25
Do typechecking and codegen for K&R-style function declarations
Eli Friedman
2008-08-18
warn when someone tries to make an array of ObjC interfaces instead of array
Chris Lattner
2008-08-11
More #include cleaning
Daniel Dunbar
2008-08-11
More #include cleaning
Daniel Dunbar
2008-08-11
More #include cleaning
Daniel Dunbar
2008-08-09
Implement support for the 'wchar_t' C++ type.
Argyrios Kyrtzidis
2008-07-26
make DeclSpec manage its own protocol qualifier list memory instead of having
Chris Lattner
2008-07-26
fix several problems with the protocol qualified id handling where id was imp...
Chris Lattner
2008-06-29
make type attribute processing static instead of methods on Sema.
Chris Lattner
2008-06-29
handle type attributes when converting types, not when processing decls.
Chris Lattner
2008-06-28
adjust the prototypes of a bunch of decl processing methods to take
Chris Lattner
2008-06-27
the 'mode' attribute is a decl attribute, not a type attribute. Move it to
Chris Lattner
2008-06-26
Make Declarator::getDeclSpec() return a const reference to avoid
Chris Lattner
2008-06-26
fix a bug handling type attributes in the declspec. declspec processing
Chris Lattner
2008-05-27
Implementation of gcc mode attribute; this is significant because
Eli Friedman
2008-05-14
An array of VLAs is a VLA. Shouldn't make any significant difference at
Eli Friedman
2008-05-07
Diagnose attempts to use C++ default arguments outside of a function declaration
Douglas Gregor
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-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
move a semantic check out of the parser into sema.
Chris Lattner
2008-04-05
Fix handling of implicit int, resolving PR2012 and reverting (and
Chris Lattner
2008-04-02
add a common base class "PointerLikeType" for PointerType and ReferenceType,
Chris Lattner
2008-04-02
Various parts of the standard require something to be an "incomplete or
Chris Lattner
2008-04-02
1) Enforce C99 6.7.3p2: "Types other than pointer types derived from
Chris Lattner
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-03-16
Make the parameter count of ObjCMethodDecl unsigned, you
Chris Lattner
2008-03-15
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner