summaryrefslogtreecommitdiffstats
path: root/test/Sema/block-return.c
Commit message (Expand)AuthorAgeFilesLines
* Consolidate header inclusion diagnosticsAlp Toker2014-07-111-1/+1
* Further weaken block conversion rules to permit blocks withJohn McCall2013-03-211-0/+11
* Implement GCC's -Wint-to-pointer-cast.David Blaikie2012-10-161-1/+1
* fixes the diagnostic issued in // rdar://11069896Fariborz Jahanian2012-03-211-1/+1
* Allow void blocks to return witn a void expression in Fariborz Jahanian2012-03-211-2/+5
* Remove the "C" in "implicitly declaring C library function" diagnosticJean-Daniel Dupas2012-01-271-1/+1
* Move block return type inference diagnostic to a common place whereFariborz Jahanian2011-12-031-2/+2
* If block literal return type is not specified, return type of the block is Fariborz Jahanian2011-12-031-3/+3
* Fix a block sema bug where result type of initializerFariborz Jahanian2011-02-111-1/+1
* Correct r124242 making sure function chunk that gets diagnosed is really abou...Argyrios Kyrtzidis2011-01-261-0/+1
* Change error "function cannot return array type" -> "blocks cannot return arr...Argyrios Kyrtzidis2011-01-251-1/+1
* Refactor the application of type attributes so that attributes fromJohn McCall2011-01-051-1/+1
* make clang print types as "const int *" instead of "int const*",Chris Lattner2010-09-051-4/+4
* Get rid of the "functions declared 'noreturn' should have a 'void' result typ...Anders Carlsson2010-09-031-2/+2
* Add warning for functions/blocks that have attribute 'noreturn' but return a ...Ted Kremenek2010-08-191-2/+2
* Wire up '-Wignored-qualifiers' to the warning on 'const' in 'const int f()'.Chandler Carruth2010-07-141-3/+2
* When forming a function call or message send expression, be sure toDouglas Gregor2010-07-131-2/+5
* Improve diagnostics like "initializing <type> from an expression ofDouglas Gregor2010-04-091-5/+5
* Improve diagnostics when we fail to convert from a source type to aDouglas Gregor2010-04-091-7/+7
* Implement the lvalue-to-rvalue conversion where needed. TheDouglas Gregor2010-02-031-4/+3
* add a bunch of missing prototypes to testsChris Lattner2010-01-091-0/+1
* Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar2009-12-151-1/+1
* Remove tabs, and whitespace cleanups.Mike Stump2009-09-091-2/+2
* reject returning a block expr even when it has parens and casts in the way.Chris Lattner2009-09-081-0/+2
* Use QualType to represent block's implicit return type asFariborz Jahanian2009-06-191-0/+24
* Fixup Sema and CodeGen for block literal attributes when the returnMike Stump2009-04-291-1/+2
* Sema and CodeGen support for attributes on blocks. Radar 6441502Mike Stump2009-04-291-0/+6
* Don't allow blocks to be declared as returning an array. Radar 6441502Mike Stump2009-04-281-0/+3
* Tighten up blocks type checking. This was discussed back in theMike Stump2009-04-211-4/+4
* Fixup semantic analysis for nested blocks, and allow block literalMike Stump2009-04-171-2/+11
* Rename clang to clang-cc.Daniel Dunbar2009-03-241-1/+1
* Extend builtin "attribute" syntax to include a notation forDouglas Gregor2009-02-141-1/+2
* Add support for blocks with explicit return types.Mike Stump2009-02-041-15/+14
* instead of forcing blocks on by default, make them default to off, but letChris Lattner2008-12-041-1/+1
* Fix <rdar://problem/6252216> compare block to NULL.Steve Naroff2008-09-281-1/+4
* Fix <rdar://problem/6252226> parser thinks block argument is undefined identi...Steve Naroff2008-09-281-0/+2
* Downgrade incompatible block pointer error to a warning (to be consistent wit...Steve Naroff2008-09-241-3/+11
* Fix <rdar://problem/6243788> clang: Incorrect return statement for Blocks?Steve Naroff2008-09-241-0/+20
* Sema::ActOnBlockReturnStmt(): Need to perform the UsualUnaryConversions on th...Steve Naroff2008-09-161-0/+52