This is an archive of the discontinued LLVM Phabricator instance.

[clang-format] More work on space around operators in Verilog
ClosedPublic

Authored by sstwcw on Mar 19 2023, 7:56 PM.

Details

Summary

before:

(opcode *>o1) = 6.1;
a inside{b, c};
x = { >> {j}};

after:

(opcode *> o1) = 6.1;
a inside {b, c};
x = {>>{j}};

Diff Detail

Event Timeline

sstwcw created this revision.Mar 19 2023, 7:56 PM
Herald added a project: Restricted Project. · View Herald TranscriptMar 19 2023, 7:56 PM
sstwcw requested review of this revision.Mar 19 2023, 7:56 PM
Herald added a project: Restricted Project. · View Herald TranscriptMar 19 2023, 7:56 PM
Herald added a subscriber: cfe-commits. · View Herald Transcript
sstwcw added a project: Restricted Project.Mar 19 2023, 7:56 PM
sstwcw updated this revision to Diff 506457.Mar 19 2023, 8:10 PM
This revision is now accepted and ready to land.Mar 21 2023, 3:15 AM
This revision was landed with ongoing or failed builds.Mar 25 2023, 2:18 PM
This revision was automatically updated to reflect the committed changes.