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
/
SemaInit.cpp
Age
Commit message (
Expand
)
Author
2008-11-24
Change a whole lot of diagnostics to take QualType's directly
Chris Lattner
2008-11-20
remove the last old-fashioned Diag method. Transition complete!
Chris Lattner
2008-11-19
remove one more old-style Diag method.
Chris Lattner
2008-10-26
Remember whether an initlist had a designator in the AST.
Chris Lattner
2008-08-18
Support initialization of incomplete array with zero size (as
Daniel Dunbar
2008-08-11
More #include cleaning
Daniel Dunbar
2008-08-11
Minor #include cleaning
Daniel Dunbar
2008-08-10
InitListChecker::CheckListElementTypes(): Check for function types and issue ...
Steve Naroff
2008-08-09
Make sure to count the struct elements correctly; here, we want the
Eli Friedman
2008-08-04
Finally fix PR2189. This makes a fairly invasive but important change to
Chris Lattner
2008-06-09
-Changes to TagDecl:
Argyrios Kyrtzidis
2008-06-09
For struct initialization, check compatibility with the unqualified
Eli Friedman
2008-05-25
Count the number of initializable members correctly in structs/unions
Eli Friedman
2008-05-25
Diagnose implicit init list for empty aggregate, like struct {}. Fixes
Eli Friedman
2008-05-25
Move the error checking for variable-sized objects so we don't
Eli Friedman
2008-05-20
Be a bit more defensive in SemaInit.
Eli Friedman
2008-05-19
Adjust warning so that it doesn't fire when there is an error.
Eli Friedman
2008-05-19
Add errors for some illegal constructs (specifically, "int a = {{3}};"
Eli Friedman
2008-05-19
Some more SemaInit cleanup.
Eli Friedman
2008-05-19
Various fixes; solves (almost) all of the test regressions that would be
Eli Friedman
2008-05-06
Several fixes to SemaInit.cpp. It's still not enabled (since it fails a few t...
Steve Naroff
2008-05-01
Replace Sema::CheckInitializerListTypes() with a helper class (InitListChecke...
Steve Naroff