[clang-format] More work on space around operators in Verilog
before: ``` (opcode *>o1) = 6.1; a inside{b, c}; x = { >> {j}}; ``` after: ``` (opcode *> o1) = 6.1; a inside {b, c}; x = {>>{j}}; ``` Reviewed By: MyDeveloperDay Differential Revision: https://reviews.llvm.org/D146403
Loading
Please sign in to comment