diff options
author | Fangrui Song <i@maskray.me> | 2021-06-24 14:47:03 -0700 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2021-06-24 14:47:03 -0700 |
commit | f1e2d5851bf869685971d5acb894b39a89ea2d49 (patch) | |
tree | 0bae67984973057501f4f3be116e92be20623360 /llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp | |
parent | 9ca0171a9ffdef5fdb1511d197a3fd72490362de (diff) | |
download | llvm-f1e2d5851bf869685971d5acb894b39a89ea2d49.zip llvm-f1e2d5851bf869685971d5acb894b39a89ea2d49.tar.gz llvm-f1e2d5851bf869685971d5acb894b39a89ea2d49.tar.bz2 |
[OptTable] Rename PrintHelp to printHelp
To be consistent with other member functions and match the coding standard.
Diffstat (limited to 'llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp')
-rw-r--r-- | llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp b/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp index 80d3033..8f69282 100644 --- a/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp +++ b/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp @@ -287,7 +287,7 @@ int llvm::libDriverMain(ArrayRef<const char *> ArgsArr) { // Handle /help if (Args.hasArg(OPT_help)) { - Table.PrintHelp(outs(), "llvm-lib [options] file...", "LLVM Lib"); + Table.printHelp(outs(), "llvm-lib [options] file...", "LLVM Lib"); return 0; } |