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
/
Parse
/
DeclSpec.cpp
Age
Commit message (
Expand
)
Author
2009-07-14
Basic support for C++0x unicode types. Support for literals will follow in a...
Alisdair Meredith
2009-06-26
Implement enough of the 'auto' keyword so we can claim to support N2546.
Anders Carlsson
2009-05-31
Disallow exception specs on typedefs.
Sebastian Redl
2009-05-29
Reject incomplete types in exception specs.
Sebastian Redl
2009-05-28
When we parse a tag specifier, keep track of whether that tag
Douglas Gregor
2009-05-06
Add parsing of friend specifiers.
Anders Carlsson
2009-04-29
Have the parser communicate the exception specification to the action.
Sebastian Redl
2009-04-19
Add more thorough/correct checking for invalid __thread specifiers.
Eli Friedman
2009-04-01
Add code modification hints to various parsing-related diagnostics.
Douglas Gregor
2009-03-28
Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a
Chris Lattner
2009-03-26
Simplify CXXScopeSpec a lot. No more weird SmallVector-like hacks here
Douglas Gregor
2009-03-19
Introduce a representation for types that we referred to via a
Douglas Gregor
2009-02-27
cleanup
Chris Lattner
2009-02-18
Allow "overloadable" functions in C to be declared as variadic without
Douglas Gregor
2009-02-09
Make Sema::getTypeName return the opaque pointer of a QualType rather
Douglas Gregor
2009-02-06
Semantic checking for class template declarations and
Douglas Gregor
2009-01-29
move library-specific diagnostic headers into library private dirs. Reduce
Chris Lattner
2009-01-27
Split the single monolithic DiagnosticKinds.def file into one
Chris Lattner
2009-01-20
Optimize Declarator to avoid malloc/free traffic for the argument list of a
Chris Lattner
2009-01-12
Implement support for anonymous structs and unions in C. Both C and
Douglas Gregor
2008-12-28
Diagnose declarations that don't declare anything, and fix PR3020.
Sebastian Redl
2008-11-22
remove some more old Diag methods, replace with a single static helper function
Chris Lattner
2008-11-18
This reworks some of the Diagnostic interfaces a bit to change how diagnostics
Chris Lattner
2008-11-18
Change the diagnostics interface to take an array of pointers to
Chris Lattner
2008-11-14
Implement parsing and semantic checking of the 'mutable' keyword.
Sebastian Redl
2008-10-31
Add support for parsing and representing C++ constructor declarations.
Douglas Gregor
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-08-01
Wherever a type is used/returned from the Action module, use TypeTy instead o...
Argyrios Kyrtzidis
2008-06-19
One more test checkin.
Mike Stump
2008-04-13
This patch is just the easy part of the class names patch, which
Chris Lattner
2008-03-15
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner