Re: [PATCH] perf clang: fix semicolon code style issue

From: Arnaldo Carvalho de Melo
Date: Wed Mar 06 2019 - 07:50:47 EST


Em Mon, Mar 04, 2019 at 10:36:14PM +0800, Yang Wei escreveu:
> From: Yang Wei <yang.wei9@xxxxxxxxxx>
>
> Delete a superfluous semicolon in getBPFObjectFromModule().
>
> Signed-off-by: Yang Wei <yang.wei9@xxxxxxxxxx>
> ---
> tools/perf/util/c++/clang.cpp | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/perf/util/c++/clang.cpp b/tools/perf/util/c++/clang.cpp
> index 39c0004..fc361c3 100644
> --- a/tools/perf/util/c++/clang.cpp
> +++ b/tools/perf/util/c++/clang.cpp
> @@ -156,7 +156,7 @@ getBPFObjectFromModule(llvm::Module *Module)
> #endif
> if (NotAdded) {
> llvm::errs() << "TargetMachine can't emit a file of this type\n";
> - return std::unique_ptr<llvm::SmallVectorImpl<char>>(nullptr);;
> + return std::unique_ptr<llvm::SmallVectorImpl<char>>(nullptr);
> }
> PM.run(*Module);

Thanks, applied.

- Arnaldo