chfast added inline comments.
Comment at: cfe/trunk/docs/ClangFormatStyleOptions.rst:173
+
+ someLongFunction(argument1,
+ argument2);
I think this example is not achievable. clang-format seems to prefer putting
all arguments on the next line if th
chfast added a comment.
This check can be useful in other case like this:
inline constexpr const int x = 1;
where `inline` and `const` are redundant.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D18914/new/
https://reviews.llvm.org/D18914
___
chfast added inline comments.
Comment at: clang/lib/CodeGen/CGCall.cpp:5320
+ if (!(Cleanup && Cleanup->getCleanup()->isRedundantBeforeReturn()))
+CGM.ErrorUnsupported(MustTailCall, "tail call skipping over cleanups");
+}
I reported a related iss