index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
Sema
/
init.c
Age
Commit message (
Expand
)
Author
2009-11-03
Reorganize the parsing of decl groups / function definitions so that
John McCall
2009-05-31
Fix for PR4285: allow intializing a const wchar_t array with a wide
Eli Friedman
2009-04-21
Explictly track tentative definitions within Sema, then hand those
Douglas Gregor
2009-03-29
hoist checks for ; and in out of ParseInitDeclaratorListAfterFirstDeclarator
Chris Lattner
2009-03-24
Rename clang to clang-cc.
Daniel Dunbar
2009-03-24
Fix PR3868 by making Evaluate handle cases like "(long)&a + 4".
Eli Friedman
2009-03-10
Add type checking for tentative definitions at the end of the
Douglas Gregor
2009-02-23
A few small improvements to Evaluate for stuff I noted in FIXMEs.
Eli Friedman
2009-02-22
Fix test to be legal on 64-bit systems.
Eli Friedman
2009-02-18
Downgrade the "excess elements in initializer" errors to warnings *in
Douglas Gregor
2009-02-07
Use our new snazzy stdint.h to make a testcase 64-bit portable.
Sebastian Redl
2009-02-02
Add iterators to LookupResult, allowing one to iterate over the
Douglas Gregor
2009-01-30
Closed out a few radars that were addressed by designated initializers
Douglas Gregor
2009-01-24
Ignore parens when determining if an expr is a string literal. Fixes PR3382.
Anders Carlsson
2009-01-23
Properly manage the bit-widths of APInts/APSInts in array initialization.
Douglas Gregor
2009-01-19
Centralize error reporting of improper uses of incomplete types in the
Douglas Gregor
2008-11-22
Fix test cases broken by quote normalization in diagnostics.
Sebastian Redl
2008-11-11
Fix PR3031 by silencing follow-on errors in invalid declarations.
Chris Lattner
2008-11-07
Fix crash caused by this:
Argyrios Kyrtzidis
2008-11-03
Fix PR3001: if we have an error parsing an initializer, make sure to remove
Chris Lattner
2008-09-02
add the other test case for completeness and to avoid regressions in the future
Nuno Lopes
2008-09-02
Fix for PR2747: allow pointer->int casts with a null base; these are
Eli Friedman
2008-08-25
Add test case for function-pointer-cast-of-global as constant
Daniel Dunbar
2008-08-19
add testcase we already handle.
Chris Lattner
2008-08-10
wrap some long diagnostics, make 'initializer is not a constant' diagnostic
Chris Lattner
2008-05-30
Make sure to allow assigning a pointer to a bool.
Eli Friedman
2008-05-21
Fix a couple of bugs found by Neil Booth in the const-ness checking.
Eli Friedman
2008-05-04
add testcase for pr2050 which is now fixed.
Chris Lattner
2008-02-08
Improve diagnostic for illegal array initialization.
Eli Friedman
2007-12-02
all filevar's have static storage. Previously a global with
Chris Lattner
2007-11-27
add several cases that Expr::hasStaticStorage missed, pointed out by Oliver Hunt
Chris Lattner
2007-11-01
Implement test/Sema/init.c by treating functions as constants.
Chris Lattner