diff options
author | Chih-Hung Hsieh <chh@google.com> | 2017-07-12 16:27:00 +0000 |
---|---|---|
committer | Chih-Hung Hsieh <chh@google.com> | 2017-07-12 16:27:00 +0000 |
commit | 98a6b3ea87152728f2e4e513fe05d629b722e4e0 (patch) | |
tree | b2372200538e01960463065876f9c8aee1197a11 /clang-tools-extra/test/clang-tidy/performance-unnecessary-value-param-header.cpp | |
parent | 322e8c2bc12085b084eae364c8afd97d827f9c20 (diff) | |
download | bcm5719-llvm-98a6b3ea87152728f2e4e513fe05d629b722e4e0.tar.gz bcm5719-llvm-98a6b3ea87152728f2e4e513fe05d629b722e4e0.zip |
[clang-tidy] add regression test to performance-unnecessary-value-param
This test shows the problem in https://bugs.llvm.org/show_bug.cgi?id=33734
Differential Revision: https://reviews.llvm.org/D35225
llvm-svn: 307810
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/performance-unnecessary-value-param-header.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/performance-unnecessary-value-param-header.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/clang-tools-extra/test/clang-tidy/performance-unnecessary-value-param-header.cpp b/clang-tools-extra/test/clang-tidy/performance-unnecessary-value-param-header.cpp new file mode 100644 index 00000000000..661abde46e0 --- /dev/null +++ b/clang-tools-extra/test/clang-tidy/performance-unnecessary-value-param-header.cpp @@ -0,0 +1,18 @@ +// RUN: cp %S/Inputs/performance-unnecessary-value-param/header.h %T/header.h +// RUN: %check_clang_tidy %s performance-unnecessary-value-param %t -- -- -std=c++11 -I %T +// RUN: diff %T/header.h %S/Inputs/performance-unnecessary-value-param/header-fixed.h + +#include "header.h" + + + +int f1(int n, ABC v1, ABC v2) { + // CHECK-MESSAGES: [[@LINE-1]]:19: warning: the parameter 'v1' is copied for each invocation but only used as a const reference; consider making it a const reference [performance-unnecessary-value-param] + // CHECK-MESSAGES: [[@LINE-2]]:27: warning: the parameter 'v2' is copied for each invocation but only used as a const reference; consider making it a const reference [performance-unnecessary-value-param] + // CHECK-FIXES: int f1(int n, const ABC& v1, const ABC& v2) { + return v1.get(n) + v2.get(n); +} +int f2(int n, ABC v2) { + // CHECK-MESSAGES: [[@LINE-1]]:19: warning: the parameter 'v2' is copied for each invocation but only used as a const reference; consider making it a const reference [performance-unnecessary-value-param] + // CHECK-FIXES: int f2(int n, const ABC& v2) { +} |