Go to file
Chris Lattner beb9055000 remove some dead code. ArgTokens can never be empty, because it is always
terminated with an EOF token.  The condition it is trying to check for is
handled by this code above.

    // Empty arguments are standard in C99 and supported as an extension in
    // other modes.
    if (ArgTokens.empty() && !Features.C99)
      Diag(Tok, diag::ext_empty_fnmacro_arg);

llvm-svn: 67705
2009-03-25 21:01:40 +00:00
clang remove some dead code. ArgTokens can never be empty, because it is always 2009-03-25 21:01:40 +00:00
llvm Add a test case for PR3779: when to promote the function return value. 2009-03-25 20:30:19 +00:00