[PATCH] D105743: [AIX] Emit version string in .file directive

ChenZheng via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Jul 11 19:49:14 PDT 2021


shchenz accepted this revision.
shchenz added a comment.
This revision is now accepted and ready to land.

LGTM. Thanks for doing this.



================
Comment at: llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp:316
+      OutStreamer->emitFileDirective(FileName, VerStr, "", "");
+    } else {
+      OutStreamer->emitFileDirective(FileName);
----------------
Don't need `{}` for the else block.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D105743



More information about the llvm-commits mailing list