[PATCH] D93969: [TableGen] Add field kind to the RecordVal class.

Craig Topper via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 5 11:16:01 PST 2021


craig.topper added inline comments.


================
Comment at: llvm/lib/TableGen/Record.cpp:2147
+RecordVal::RecordVal(Init *N, RecTy *T, FieldKind K)
+  : Name(N), TyAndKind(T, K) {
   setValue(UnsetInit::get());
----------------
Can you fix this as clang-format suggests? I know it was wrong before you got here and I wouldn't care if the constructor at line 2155 didn't have 4 space indentation. So might as well make them consistent while we're here.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D93969/new/

https://reviews.llvm.org/D93969



More information about the llvm-commits mailing list