[PATCH] D79026: Add vendor macro to "lld"

Steven Wan via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 29 11:49:07 PDT 2020


stevewan updated this revision to Diff 260973.
stevewan added a comment.

Fix format with 'clang-format'.

Pushed a wrong commit, please ignore this diff.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D79026

Files:
  lld/Common/Version.cpp


Index: lld/Common/Version.cpp
===================================================================
--- lld/Common/Version.cpp
+++ lld/Common/Version.cpp
@@ -25,7 +25,8 @@
 #define LLD_VENDOR_DISPLAY
 #endif
 #if defined(LLD_REPOSITORY) && defined(LLD_REVISION)
-  return LLD_VENDOR_DISPLAY "LLD " LLD_VERSION_STRING " (" LLD_REPOSITORY " " LLD_REVISION ")";
+  return LLD_VENDOR_DISPLAY "LLD " LLD_VERSION_STRING " (" LLD_REPOSITORY
+                            " " LLD_REVISION ")";
 #else
   return LLD_VENDOR_DISPLAY "LLD " LLD_VERSION_STRING;
 #endif


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D79026.260973.patch
Type: text/x-patch
Size: 554 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200429/dd4b5337/attachment.bin>


More information about the llvm-commits mailing list