<div dir="ltr">Hello,<div><br></div><div>When inline assembly has only clobber constraints it's common to write all three colons without spaces, for example:</div><div><br></div><div>asm volatile("nop" ::: "memory");</div><div><br></div><div>Currently clang-format splits ::: into coloncolon and colon, and inserts a space before the colon, which looks strange:</div><div><div><br>asm volatile("nop" :: : "memory");</div></div><div><br></div><div>I suggest to allow having ::: without spaces in this case. Attached is a simple patch to that effect.</div><div><br></div><div>Thanks,</div><div>Eugene</div></div>