Skip to content

Commit 9f50f84

Browse files
committed
break long line for formatting
1 parent 4506a35 commit 9f50f84

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/rustllvm/PassWrapper.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,11 @@ extern "C" void LLVMRustPrintTargetFeatures(LLVMTargetMachineRef TM) {
425425
for (auto &Feature : FeatTable)
426426
printf(" %-*s - %s.\n", MaxFeatLen, Feature.Key, Feature.Desc);
427427
printf("Rust-specific features:\n");
428-
printf(" %-*s - %s.\n", MaxFeatLen, "crt-static", "Enables libraries with C Run-time Libraries(CRT) to be statically linked");
428+
printf(" %-*s - %s.\n",
429+
MaxFeatLen,
430+
"crt-static",
431+
"Enables libraries with C Run-time Libraries(CRT) to be statically linked"
432+
);
429433
printf("\n");
430434

431435
printf("Use +feature to enable a feature, or -feature to disable it.\n"

0 commit comments

Comments
 (0)