On Fri, 13 May 2022 20:46:19 GMT, Vladimir Ivanov <[email protected]> wrote:
>> Shouldn't there be a 2-space indentation wrt the assert here? I could also
>> indent all the arguments to be aligned with the format string, if that seems
>> better.
>
> It's preferred to indent multi-line argument lists on the column where
> argument list starts.
assert(dst.is_single_reg(), "not a stack pair: (%s, %s), (%s, %s)",
src.first()->name(), src.second()->name(), dst.first()->name(),
dst.second()->name());
-------------
PR: https://git.openjdk.java.net/jdk/pull/7959