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