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
/
block-return.c
Age
Commit message (
Expand
)
Author
2013-03-21
Further weaken block conversion rules to permit blocks with
John McCall
2012-10-16
Implement GCC's -Wint-to-pointer-cast.
David Blaikie
2012-03-21
fixes the diagnostic issued in // rdar://11069896
Fariborz Jahanian
2012-03-21
Allow void blocks to return witn a void expression in
Fariborz Jahanian
2012-01-27
Remove the "C" in "implicitly declaring C library function" diagnostic
Jean-Daniel Dupas
2011-12-03
Move block return type inference diagnostic to a common place where
Fariborz Jahanian
2011-12-03
If block literal return type is not specified, return type of the block is
Fariborz Jahanian
2011-02-11
Fix a block sema bug where result type of initializer
Fariborz Jahanian
2011-01-26
Correct r124242 making sure function chunk that gets diagnosed is really abou...
Argyrios Kyrtzidis
2011-01-25
Change error "function cannot return array type" -> "blocks cannot return arr...
Argyrios Kyrtzidis
2011-01-05
Refactor the application of type attributes so that attributes from
John McCall
2010-09-05
make clang print types as "const int *" instead of "int const*",
Chris Lattner
2010-09-03
Get rid of the "functions declared 'noreturn' should have a 'void' result typ...
Anders Carlsson
2010-08-19
Add warning for functions/blocks that have attribute 'noreturn' but return a ...
Ted Kremenek
2010-07-14
Wire up '-Wignored-qualifiers' to the warning on 'const' in 'const int f()'.
Chandler Carruth
2010-07-13
When forming a function call or message send expression, be sure to
Douglas Gregor
2010-04-09
Improve diagnostics like "initializing <type> from an expression of
Douglas Gregor
2010-04-09
Improve diagnostics when we fail to convert from a source type to a
Douglas Gregor
2010-02-03
Implement the lvalue-to-rvalue conversion where needed. The
Douglas Gregor
2010-01-09
add a bunch of missing prototypes to tests
Chris Lattner
2009-12-15
Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
Daniel Dunbar
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-09-08
reject returning a block expr even when it has parens and casts in the way.
Chris Lattner
2009-06-19
Use QualType to represent block's implicit return type as
Fariborz Jahanian
2009-04-29
Fixup Sema and CodeGen for block literal attributes when the return
Mike Stump
2009-04-29
Sema and CodeGen support for attributes on blocks. Radar 6441502
Mike Stump
2009-04-28
Don't allow blocks to be declared as returning an array. Radar 6441502
Mike Stump
2009-04-21
Tighten up blocks type checking. This was discussed back in the
Mike Stump
2009-04-17
Fixup semantic analysis for nested blocks, and allow block literal
Mike Stump
2009-03-24
Rename clang to clang-cc.
Daniel Dunbar
2009-02-14
Extend builtin "attribute" syntax to include a notation for
Douglas Gregor
2009-02-04
Add support for blocks with explicit return types.
Mike Stump
2008-12-04
instead of forcing blocks on by default, make them default to off, but let
Chris Lattner
2008-09-28
Fix <rdar://problem/6252216> compare block to NULL.
Steve Naroff
2008-09-28
Fix <rdar://problem/6252226> parser thinks block argument is undefined identi...
Steve Naroff
2008-09-24
Downgrade incompatible block pointer error to a warning (to be consistent wit...
Steve Naroff
2008-09-24
Fix <rdar://problem/6243788> clang: Incorrect return statement for Blocks?
Steve Naroff
2008-09-16
Sema::ActOnBlockReturnStmt(): Need to perform the UsualUnaryConversions on th...
Steve Naroff