diff options
author | sstwcw <su3e8a96kzlver@posteo.net> | 2025-03-31 13:53:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-31 13:53:23 +0000 |
commit | cb54026d92191e347629265d4082f5cc2cc28020 (patch) | |
tree | cc08d4ba64e2f0ed35a7e9fff0fdb66fc3389fe5 /clang/unittests/Format/FormatTestJava.cpp | |
parent | 9b32f3d0966723f443328d8b49c149bde6725899 (diff) | |
download | llvm-cb54026d92191e347629265d4082f5cc2cc28020.zip llvm-cb54026d92191e347629265d4082f5cc2cc28020.tar.gz llvm-cb54026d92191e347629265d4082f5cc2cc28020.tar.bz2 |
[clang-format] Recognize wait fork in Verilog (#132042)
before
```Verilog
wait fork
;
wait fork
;
wait fork
;
```
after
```Verilog
wait fork;
wait fork;
wait fork;
```
The `wait fork` statement should not start a block. Previously the
formatter treated the `fork` part as the start of a new block. Now the
problem is fixed.
Diffstat (limited to 'clang/unittests/Format/FormatTestJava.cpp')
0 files changed, 0 insertions, 0 deletions