Em Mon, Mar 04, 2019 at 10:36:14PM +0800, Yang Wei escreveu:
> From: Yang Wei <[email protected]>
> 
> Delete a superfluous semicolon in getBPFObjectFromModule().
> 
> Signed-off-by: Yang Wei <[email protected]>
> ---
>  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

Reply via email to