[lld] [DRAFT][clang-format][lld] Run clang-format on lld (PR #80461)

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 2 11:21:07 PST 2024


================
@@ -72,11 +72,7 @@ enum DFormOpcd {
   ADDI = 14
 };
 
-enum DSFormOpcd {
-  LD = 58,
-  LWA = 58,
-  STD = 62
-};
+enum DSFormOpcd { LD = 58, LWA = 58, STD = 62 };
----------------
MatzeB wrote:

Could add a comma here for formatting purposes:
```suggestion
enum DSFormOpcd {
   LD = 58,
   LWA = 58,
   STD = 62,
 };
```

https://github.com/llvm/llvm-project/pull/80461


More information about the llvm-commits mailing list