Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

perf clang: Remove needless extra semicolon

Delete a superfluous semicolon in getBPFObjectFromModule().

Signed-off-by: Yang Wei <yang.wei9@zte.com.cn>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Yang Wei <albin_yang@163.com>
Link: http://lkml.kernel.org/r/1551710174-3349-1-git-send-email-albin_yang@163.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Yang Wei and committed by
Arnaldo Carvalho de Melo
a53837a5 3163613c

+1 -1
+1 -1
tools/perf/util/c++/clang.cpp
··· 156 156 #endif 157 157 if (NotAdded) { 158 158 llvm::errs() << "TargetMachine can't emit a file of this type\n"; 159 - return std::unique_ptr<llvm::SmallVectorImpl<char>>(nullptr);; 159 + return std::unique_ptr<llvm::SmallVectorImpl<char>>(nullptr); 160 160 } 161 161 PM.run(*Module); 162 162