about summary refs log tree commit diff
diff options
context:
space:
mode:
authorroot <aszenz@gmail.com>2020-06-16 18:14:32 +0000
committerroot <aszenz@gmail.com>2020-06-16 18:14:32 +0000
commit9f50f84ef106c7f521d1322ec39562610339f74d (patch)
treed013276580d448ec12fe3c5d1675659743ba9038
parent4506a358ca4be0b3f7a1f320a677168d964ca9f7 (diff)
downloadrust-9f50f84ef106c7f521d1322ec39562610339f74d.tar.gz
rust-9f50f84ef106c7f521d1322ec39562610339f74d.zip
break long line for formatting
-rw-r--r--src/rustllvm/PassWrapper.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/rustllvm/PassWrapper.cpp b/src/rustllvm/PassWrapper.cpp
index 47c03069182..16c2ac33227 100644
--- a/src/rustllvm/PassWrapper.cpp
+++ b/src/rustllvm/PassWrapper.cpp
@@ -425,7 +425,11 @@ extern "C" void LLVMRustPrintTargetFeatures(LLVMTargetMachineRef TM) {
   for (auto &Feature : FeatTable)
     printf("    %-*s - %s.\n", MaxFeatLen, Feature.Key, Feature.Desc);
   printf("Rust-specific features:\n");
-  printf("    %-*s - %s.\n", MaxFeatLen, "crt-static", "Enables libraries with C Run-time Libraries(CRT) to be statically linked");
+  printf("    %-*s - %s.\n", 
+    MaxFeatLen, 
+    "crt-static", 
+    "Enables libraries with C Run-time Libraries(CRT) to be statically linked"
+  );
   printf("\n");
 
   printf("Use +feature to enable a feature, or -feature to disable it.\n"